隐藏元素:Object.style.display=none
其他属性参考: http://www.w3school.com.cn/jsref/dom_obj_style.asp
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body>
<div id = "box"></div>
</body>
<script type="text/javascript">
var box = document.getElementById("box")
box.style.width='100px'
box.style.height='200px'
box.style.backgroundColor='red'
</script>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)