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

cssText方式写入css

时间:2014-11-24 11:35:10      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   on   div   log   as   tt   

<div class="a" id="a">hello world</div>
        <script>
            //通过JS来覆写对象的样式是典型的一种销毁原样式并重建的过程,这种销毁和重建,都会增加浏览器的开销
            var elem = document.getElementById("a");
            elem.style.cssText += " ;color:red; font-weight:700;"
            alert(elem.style.cssText)
        </script>

  

cssText方式写入css

标签:style   blog   ar   color   on   div   log   as   tt   

原文地址:http://www.cnblogs.com/piercalex/p/4118185.html

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