我像这样动态加载一个 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 中不起作用。
有什么帮助吗?谢谢