在IE中插入脚本和iframe标签

Insert script and iframe tag in IE

本文关键字:iframe 标签 脚本 插入 IE      更新时间:2023-09-26

我想在打开的窗口中编写脚本和iframe元素,这在Firefox和Chrome中工作良好,但在IE中不行。

我的代码如下:

 var mywindow = window.open(url,'child',params);
 mywindow.onload = writeToWindow;
 function writeToWindow(){
      var myScriptEle = document.createElement('script');
      myScriptEle.type = "text/javascript"; 
      myScriptEle.text = " some script";
      var myIframe = document.createElement("IFRAME");
      myIframe.id = "childwindow";
      myIframe.name = "childwindowname";
      myIframe.src = MyframeUrl;
      if(mywindow){
      mywindow.document.getElementsByTagName('body')[0].appendChild(myScriptEle);
          mywindow.document.body.appendChild(myIframe);
      }
 }

我得到"No such interface supported"错误

提前感谢,请告诉我是否有任何工作围绕IE

这很容易,getElementsByTagName是不支持的(好,或者它不做什么它应该)在IE!

对于这样的事情,你最好使用jQuery之类的库。这将帮助你编写适用于所有浏览器的代码,而不会花费你几个小时的时间去弄清楚为什么某些东西在浏览器x或y中不起作用
var mywindow = window.open(url,'child',params);
writeToWindow();
function writeToWindow(){
     var content = '<script type="text/javascript">';
     content += 'function updatePage(){ '; 
     content += 'var myiframe = document.createElement("IFRAME");';
     content += 'myiframe.id = "myIframe";';
     content += 'myiframe.name = "iframe_js";';
     content += 'myiframe.className = "iframe_js";';
     content += 'myiframe.src ="http://stackoverflow.com"';
     content += '</script>';
     if(mywindow){
          mywindow.document.open();
          mywindow.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'+content+'</head><body onload="updatePage()"><div></div></body></html>');
          mywindow.document.close();
     }
 }