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

HTML DOM display 属性

时间:2016-03-15 00:23:01      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:

定义和用法

display 属性设置元素如何显示。

语法:

Object.style.display=value

可能的值

技术分享

实例

本例设置不显示元素:

 1 <html>
 2 <head>
 3 <script type="text/javascript">
 4 function removeElement()
 5 {
 6 document.getElementById("p1").style.display="none";
 7 }
 8 </script>
 9 </head>
10 <body>
11 
12 <h1>Hello</h1>
13 
14 <p id="p1">This is some text. This is some text. This is some text.
15 This is some text. This is some text. This is some text.
16 This is some text. This is some text. This is some text.</p>
17 
18 <input type="button" onclick="removeElement()"
19 value="Do not display paragraph" />
20 
21 </body>
22 </html>

 

HTML DOM display 属性

标签:

原文地址:http://www.cnblogs.com/sihuiming/p/5277678.html

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