這裡向大家描述一下HTML DOM display屬性的定義和用法,HTML DOM display屬性主要用來設置元素如何顯示,比如當此屬性值為none時,表示此元素不會被顯示,而block則表示此元素將顯示為塊級元素, 此元素前後會帶有分行符號。
HTML DOM display屬性定義和用法
此屬性主要用來設置元素如何顯示。
語法:
Object.style.display=value
可能的值
HTML DOM display屬性實例
本例設置不顯示元素:
<html> <head> <script type="text/javascript"> function removeElement() { document.getElementById("p1").style.display="none"; } </script> </head> <body> <h1>Hello</h1> <p id="p1">This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text.</p> <input type="button" onclick="removeElement()" value="Do not display paragraph" /> </body> </html>