正文: $("iframe").contents().find("body").html();//iframe里面页面body的内容$("iframe").contents().find("body").height();//iframe里面页面body的高度 参考来源: Jquery如何获取iframe里面body的html呢?_百度知道 https://zhidao.baidu.com/question/570677614.html?qq-pf-to=pcqq.c2c...
function () { console.log(iframe.contentWindow.document.body.innerHTML); });} else { iframe.onload = function () { console.log(iframe.contentWindow.document.body.innerHTML); };}
因此想到用父页面里面的js来获取,子页面iframe里面的form表单内容,同时提交到后台处理。 子页面:<input type="button" onclick="parent.submitFORM(this)" value="提交" /> 父页面:functionsubmitFORM(XX){ var childIframeArr=document.getElementsByTagName('iframe');获取子页面的iframe数组; 找出自己的子页面i...
self.frames["子窗口名称"].getElementByID("子窗口元素ID")