父子页面之间元素相互操作(iframe子页面)
Posted Amy-WebFrontEnd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了父子页面之间元素相互操作(iframe子页面)相关的知识,希望对你有一定的参考价值。
js/jquery获取iframe子页面中元素的方法:
一、使用window.frames["iframe的ID"]获取元素
window.onload = function() { var oIframe = window.frames["oIframe"].document.getElementById("getFrame"); console.log(oIframe); }
注意:此处一定要加上window.onload或者DOMContentLoaded,也就是DOM加载或者页面加载完成后。
二、使用window.name获取元素
var oIDframe = window.oIframe.document.getElementById("getFrame"); console.log(oIDframe);
oIframe是iframe的name属性值,这种获取方法不必写在window.onload或者DOMContentLoaded中,请自行测试。
三、使用getElementById获取元素
var oIdFrame = document.getElementById("oIframe").contentWindow.document.getElementById("getFrame"); console.log(oIdFrame);
使用document.getElementById获取本页面的iframe元素后,再获取iframe子页面的元素。这种获取方法不必写在window.onload或者DOMContentLoaded中
四、使用jquery获取
var ojIframe = $("#oIframe").contents().find("#getFrame").html(); console.log(ojIframe);
js/jquery iframe子页面获取父页面元素的方法:
一、使用js
var fatherEle = window.parent.document.getElementById("title"); console.log(fatherEle);
二、使用jq
var fatherEleJq = $("#title",parent.document); console.log(fatherEleJq);
父页面:
<div id="title"> index包含iframe子页面 </div> <div id="parent"> <iframe name="oIframe" id="oIframe" src="iframe.html" frameborder="0" width="1000" height="562"></iframe> </div>
iframe.html子页面:
<div id="getFrame">iframe</div>
参考链接:http://java-my-life.iteye.com/blog/1275205
以上是关于父子页面之间元素相互操作(iframe子页面)的主要内容,如果未能解决你的问题,请参考以下文章