父頁面尋找子頁面元素:
? ? ? ?window.frames["iframeName"].document.getElementsByClassName('div')[0]
? ? ? ?$(document.getElementById("iframeId").contentWindow.document).find(".div")
? ? ? ?$( window.frames["iframeName"].document).find(".div")
? ? ? ?$("#iframeId").contents().find(".div")
? ? ? ?iframeName為iframe的name屬性值
父頁面調(diào)用子頁面方法:
?????? iframeName.window.chlidFunctionName()
子頁面尋找父頁面元素:
?????? $(window.parent.document).find(".divParent")
?????? window.parent.document.getElementsByClassName("divParent")[0]
?????? $(". divParent",parent.document)
子頁面調(diào)用父頁面方法:
?????? parent.parentFunctionName()