码迷,mamicode.com
首页 > Web开发 > 详细

利用js动态创建<style>

时间:2017-08-24 17:58:47      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:else   code   append   element   htm   inner   creat   blog   div   

var nod = document.createElement(“style”),   
str = “body{background:#000;color:#fff} a{color:#fff;text-decoration:none;} a:hover{color:red;text-decoration:underline}”;  
nod.type=”text/css”;  
if(nod.styleSheet){         //ie下  
  nod.styleSheet.cssText = str;  
} else {  
  nod.innerHTML = str;       //或者写成 nod.appendChild(document.createTextNode(str))  
}  
document.getElementsByTagName(“head”)[0].appendChild(nod);  

 

利用js动态创建<style>

标签:else   code   append   element   htm   inner   creat   blog   div   

原文地址:http://www.cnblogs.com/henuyuxiang/p/7424111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!