JS中Iframe之间获取DOM和方法

在iframe子页面中获取父页面的元素:

//这个是获取父页面document中的对象;
window.parent.document.getElementById();

//获取父页面js中的方法:xxxx();
window.parent.xxxx();

在父页面中获取iframe子页面中的元素:

 var child = document.getElementById("mainFrame").contentWindow;	 //mainFrame这个id是父页面iframe的id

//获取子页面中的document对象;
child.document.getElementById();

//获取子页面的方法:xxxx();
child.xxxx();

也可以连起来写
document.getElementById("mainFrame").contentWindow.xxxx();

你可能感兴趣的:(JavaScript)