当前位置:  开发笔记 > 编程语言 > 正文

javascript代码document.write()里面的<script>

如何解决《javascript代码document.write()里面的<script>》经验,为你挑选了2个好方法。

我得到了一些嵌入HTML(在服务器端生成)的javascript代码,如下所示:

function winWriteMail2(){
  var win = open('','wininfo', ');
  win.document.open();
  win.document.write('');
  win.document.write('');
  win.document.write('');
  
  win.document.write('');
  win.document.close();
}

此代码在单击元素时执行.

对我来说有问题的部分是包含javascript文件 - 它在Firefox和Chrome中运行正常,但IE(7和8,正如我测试的)表现得很奇怪.随着包含JSFILE那里的行,点击窗口打开,但是为空,CPU 100%忙,唯一的办法是杀死IE.

任何人都可以帮助处理这个问题?也许我应该用其他方式在那里插入javascript文件?

我试过,而不是win.document.write()DOM操作方法,把这部分代码放在win.document.close():

h = win.document.getElementsByName('head')[0];
js = document.createElement('script');
js.src = '/js/JSFILE.js';
h.appendChild(js);

但是后来代码没有被加载,即使在Firefox中(并且用firebug进行检查也没有显示它甚至可以看到它).


经过一些检查后,我发现问题是由定义

在我document.write()的窗口打开,警报框出现,一切都很好.

但是使用了


IE在打开新窗口时停止,继续使用100%的CPU.



1> Gabriel McAd..:

这段代码对我有用:

function winWriteMail2(){
    var win = open('','wininfo', ');
    win.document.open();
    win.document.write('');
    win.document.write('');
    win.document.write('this is the body content');
    win.document.write('');
    win.document.close();

    var h = win.document.getElementsByTagName("head")[0];
    var js = win.document.createElement("script");
    js.type = "text/javascript";
    js.src = "js/scriptfile.js";
    h.appendChild(js);
}

以下是我需要在代码中更改以使其工作的内容:

//From
var js = document.createElement("script");
//To
var js = win.document.createElement("script");

您需要在要追加的同一文档中创建脚本元素.



2> MetaCipher..:

Google Analytics就是这样做的:

var _gat,gaJsHost =(("https:"== document.location.protocol)?" https:// ssl.":" http:// www."); document.write(unescape("%3Cscript src ='"+ gaJsHost +"google-analytics.com/ga.js'type ='text/javascript'%3E%3C/script%3E"));

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有