获取父页面ifram元素,调用父页面ifram方法

父页面:可通过parent或parent.parent...看具体的层次

用jQuery获取元素:
$( selector, parent.iframes[index].window.document)即可

parent.iframes[index].window.document也可写成parent.iframes[index].document

调用其方法:
parent.iframes[index].window.function()

如果要调用顶层,可将parent换成top

你可能感兴趣的:(获取父页面ifram元素,调用父页面ifram方法)