我们在js的工作学习中总会遇到一些不轻易通过style属性动态加载css样式的情况(eg:伪类的样式控制,动画的样式控制),这里总结一下js改变样式的几种方法:
1 2 3 4 |
ele.style.width='50px';//最常用 ele.style.cssText='width:50px';//并不会覆盖原先所有css ele.style.setProperty("width", "50px", "important");//可以传第三个参数 ele.setAttribute("style", "width: 50px")//也不会覆盖原先所有css放心用 |
1 2 3 4 5 6 7 |
//css代码 div::after{ content:attr(data-myadd); width:10px; } //js代码 div.setAttribute('data-myadd',需要动态加载的内容) |
1 2 |
ele.className=''; ele.classList.add();//emmmm没什么好说的 |
document.styleSheets[i].disabled = true
document.styleSheets[i].cssRules
document.styleSheets[i].cssRules[i].cssText
document.styleSheets[0].insertRule('* {background:blue;color:#000}',0)
不支持IE;document.styleSheets[0].addRule('*',' {background:blue;color:#000}',0)
支持IE;
1 2 3 4 5 |
//使用document.styleSheets获取样式表的时候最好获取最后一个,在最后一个样式表上添加样式 var sheets=document.styleSheets; var lastSheet=sheets[sheets.length-1]; lastSheet.insertRule('#div{width:10px}',index)//将#div样式直接添加到cssRules中;index是添加到第几条;现代浏览器 lastSheet.addRule('div','width:10px;',0)//IE浏览器 |
如果需要更改的样式比较多,还是建议通过动态加载样式的方式来改变页面样式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
//改变样式文件的引用 function loadStyle(url){ var link = document.createElement('link'); link.type = 'text/css'; link.rel = 'stylesheet'; link.href = url; var head = document.getElementsByTagName('head')[0]; head.appendChild(link); } loadStyle('test.css'); //动态加载css代码片段 var style = document.createElement('style'); style.type = 'text/css'; style.rel = 'stylesheet'; try{ //Chrome Firefox Opera Safari style .appendChild(document.createTextNode(code)); }catch(ex){//IE style.styleSheet.cssText = code; } var head = document.getElementsByTagName('head')[0]; head.appendChild(style); } loadCssCode('body{background-color:#f00}'); |
暂时就想到这么几种,后续补充