js获取iframe对象,跨域操作?
//通过designMode(设置文档为可编辑设计模式)和contentEditable(设置内容为可编辑),你可以重写iframe里的内容。代码:var iObj = document.getElementById('iId').contentWindow; iObj.document.designMode = 'On'; iObj.document.contentEditable = true; iObj.document.open(); iObj.document.writeln('<html><head>'); iObj.document.writeln('<style>body {background:#000;font-size:9pt;margin: 2px; padding: 0px;}</style>'); iObj.document.writeln('</head><body></body></html>'); iObj.document.close();// JS获取iframe元素及跨域访问操作
http://www.ribenyu.cn/space-1-do-blog-id-3443.html