HTML DOM display属性语法实例解析

开发 前端
大家对CSS display属性的用法应该比较熟悉,这个属性用于定义建立布局时元素生成的显示框类型,那么HTML DOM display 属性有何用途呢,请看本文详细介绍。

这里向大家描述一下HTML DOM display属性的定义和用法,HTML DOM display属性主要用来设置元素如何显示,比如当此属性值为none时,表示此元素不会被显示,而block则表示此元素将显示为块级元素,此元素前后会带有换行符。

HTML DOM display属性定义和用法

此属性主要用来设置元素如何显示。

语法:

Object.style.display=value

可能的值

HTML DOM display 属性可能的值

HTML DOM display属性实例

本例设置不显示元素:

  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> 

【编辑推荐】

  1. CSS display属性基本特性和语法
  2. 探究CSS hack使用原理 规则及弊端
  3. 深入探究DIV CSS布局中position属性用法
  4. CSS属性display:inline-block使用揭秘
  5. CSS hack:实现IE6、IE7、Firefox兼容

 

责任编辑:佚名 来源: w3school.com.cn
相关推荐

2010-09-15 14:40:07

HTMLposition属性

2010-09-07 08:54:18

CSSbackground-

2010-09-08 12:37:27

displayCSS

2010-09-16 11:02:56

CSS padding

2010-09-01 11:00:11

CSSbehavior

2010-09-16 10:57:15

paddingmarginCSS

2010-09-28 10:33:59

HTML DOM Ch

2010-09-15 17:05:33

CSS display

2010-09-16 10:04:50

CSSdisplay:tab

2010-09-09 13:55:47

XML DOM

2010-08-31 08:59:06

marginHTML

2010-08-23 13:29:43

HTMLpadding

2010-09-14 16:04:40

CSSclip属性

2010-09-09 13:25:52

DIVScroll

2010-08-20 14:58:26

CSSpadding

2010-08-25 14:26:09

CSSdisplay

2010-09-28 11:11:23

XML DOMHTML DOM

2010-09-15 16:57:18

CSS display

2010-09-08 11:06:49

CSSpaddingmargin

2010-09-10 15:16:51

CSSdisplay
点赞
收藏

51CTO技术栈公众号