子页面访问父页面 和 跨iframe访问

由于做项目的时候,InfoCC弹出页面较多,有的甚至父子页面关系有好几层而且在 更新树形菜单数据的时候,会遇到跨iframe访问的问题


因此为了方便访问页面元素我这边做了一些例子仅供参考。

 


1. A iframe的页面访问B iframe页面的内容。
 
    parent.document.getElementById('B iframe的ID').contentWindow.document.getElementById('B iframe页面要访问的元素ID')
 
 
2.  A iframe的3级页面访问B iframe页面的内容。
 
    window.opener.opener.parent.document.getElementById(''B iframe的ID').contentWindow.document.getElementById('B iframe页面要访问的元素ID')

 

 

 

你可能感兴趣的:(iframe)