iframe API用法

代码: parent.html


    


    
    

总结: 父html中,直接通过iframe名称.window 即可获得iframe所包含的html页面的window对象。eg: myFrame.window

代码 child.html


    


    

总结: iframe所包含的页面通过 parent.window即可获得父页面的window对象。

你可能感兴趣的:(js,html)