直接上代码吧:
document.getElementById("mainFrame").contentWindow.document.body.innerText = "";
网上有人说使用content,其实是不正确的,因为content指向的是父页面的content,且不兼容。如果使用contentDocument,在Google浏览器下可用,不兼容IE,经过测试只有先访问contentWindow,再访问其下的document则可以兼容IE和chrome。
时间: 2024-11-02 02:13:13