可能重复:
Dynamically changing stylesheet path not working in IE and Firefox
我正在创建一个小部件,需要异步加载样式表。 它在Chrome中运行良好,代码如下:
if (config.stylesheets) {
$.each(config.stylesheets, function(i, path) {
$("<link/>", {
rel: "stylesheet",
type: "text/css",
media: "screen/projection",
href: path
}).appendTo("head");
});
}
然而不是在Firefox(在这种情况下为3.6)。此处加载样式表但未应用。你会如何建议管理这个?