我已经编写了一个在 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 中会导致此问题的差异的信息。任何帮助,将不胜感激。
谢谢!