6
动态加载CSS样式表在IE上不起作用
我动态加载CSS样式表(在jQuery的帮助下),如下所示: var head = document.getElementsByTagName('head')[0]; $(document.createElement('link')) .attr({ type: 'text/css', href: '../../mz/mz.css', rel: 'stylesheet' }) .appendTo(head); 在Firefox和Google Chrome浏览器中可以正常运行,但在IE中则不能。 有什么帮助吗?谢谢