IE动态加载CSS link失败

今天使用了动态加载CSS的方法,但是如下动态调用的话是无法正确在IE中加载,当然在firefox和chrome中是正常的。
$(function(){ var linkTmp = $('<link rel="stylesheet" type="text/css" />'); linkTmp.attr({ 'href':'source/uploadify/resource/uploadify.css' }); $('head').eq(0).append(linkTmp); })

当时我特意去查看了一下html发现在head中是有成功的插入该语句
<link rel="stylesheet" type="text/css" href="source/uploadify/resource/uploadify.css"/>
但是为什么IE不会去动态加载呢?
看到一句比较经典的解释:
Once IE has processed all the styles loaded with the page, the only reliable way to add another stylesheet is with document.createStyleSheet(url)
修改代码如下,就可以成功加载啦!
url ='style.css';
if(document.createStyleSheet){
    document.createStyleSheet(url);
}else{  
    var linkTmp = $('<link rel="stylesheet" type="text/css" />');
      linkTmp.attr({
          'href':'source/uploadify/resource/uploadify.css'
      });
      $('head').eq(0).append(linkTmp);
}


 

                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值