0

我已经编写了一个在 Chrome 和 Firefox 中运行良好的小书签,但是在 IE 10 中它无法附加到文档中。我相信这与它在 IE 收藏夹栏中被列为“未评级”有关,但我不确定代码的哪一部分触发了它:

<a href="javascript:(function() {
    var elem=document.createElement('script');
    elem.setAttribute('type','text/javascript');
    elem.setAttribute('src', 'http://www.joshdforbes.com/web2mobile/
      web2mobile.js?t='+(new Date().getTime()));
    document.body.appendChild(elem); 
})()">Web2Mobile</a>

很难在 Internet 上找到任何有关 IE10 中会导致此问题的差异的信息。任何帮助,将不胜感激。

谢谢!

4

1 回答 1

1

它对我有用,但我在 IE8 上。你是先压缩的吗?

javascript:(function(){var elem=document.createElement('script');elem.setAttribute('type','text/javascript');elem.setAttribute('src','http://www.joshdforbes.com/web2mobile/web2mobile.js?t='+(new Date().getTime()));document.body.appendChild(elem);})()

我最初确实收到了警告消息,但我忽略了它并且它起作用了。

于 2013-06-12T01:12:30.620 回答