为什么换成"class"的时候,"obj.style.height"就没用了
为什么换成"class"的时候,"obj.style.height"就没用了
为什么换成"class"的时候,"obj.style.height"就没用了
2016-06-12
class属性获取的是节点集合,可能有多个class,要选择你需要的,设置属性才可以,而id的是唯一的。例如这样设置才可以获取class修改style
<h2 class="con">I love JavaScript</H2>
<p> JavaScript使网页显示动态效果并实现与用户交互功能。</p>
<script type="text/javascript">
var mychar= document.getElementsByClassName("con")[0];
mychar.style.color="red";
mychar.style.backgroundColor="#ccc";
mychar.style.width="400px";
mychar.style.height="400px";
举报