firefox等可以使用:
document.getElementById("id").setAttribute("style","top:20px;left:20px;color:red;");
IE中则必须使用style.cssText
document.getElementById("id").style.cssText = "top:20px;left:20px;color:red;";
Posted 白马非马
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量设置 style相关的知识,希望对你有一定的参考价值。
firefox等可以使用:
document.getElementById("id").setAttribute("style","top:20px;left:20px;color:red;");
IE中则必须使用style.cssText
document.getElementById("id").style.cssText = "top:20px;left:20px;color:red;";
以上是关于批量设置 style的主要内容,如果未能解决你的问题,请参考以下文章