改变 HTML 样式
如需改变 HTML 元素的样式,请使用这个语法:
document.getElementById(id).style.property=new style
Hello World!
<script> <BR>document.getElementById("p2").style.color="blue"; <BR></script>
JS改变元素属性;
<script> <BR>var div = document.getElementByIdx_x('d1'); <BR>div.setAttribute("class", "abc"); <BR></script>