DOM HR noshade属性用于设置或返回实线水平线,而不是阴影线。它返回一个布尔值。
用法:
- 它返回HR noshade属性。
hrobject.noshade
- 设置HR noshade属性。
hrobject.noshade="true/false"
属性值:
- true:用于指定水平实线而不是阴影线。
- false:用于指定阴影线。
范例1:本示例返回一个noshade属性。
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM HR noshade property</title>
</head>
<body>
<h1>GeeksForGeeks</h1>
<h2>DOM HR noshade Property</h2>
<p>
There is a horizontal rule
below this paragraph.
</p>
<!-- Assigning id to 'hr' tag. -->
<hr id="GFG" align="left" size="10px"
width="240px" color="red" noshade>
<p>
This is a horizontal rule
above this paragraph.
</p>
<button onclick="myGeeks()">Try it</button>
<h3 id="sudo"></h3>
<script>
function myGeeks() {
// Accessing 'hr' tag.
var x = document.getElementById("GFG").noShade;
document.getElementById("sudo").innerHTML = x;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
范例2:本示例设置HR noshade属性。
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM HR noshade property</title>
</head>
<body>
<h1>GeeksForGeeks</h1>
<h2>DOM HR noshade Property</h2>
<p>
There is a horizontal rule
below this paragraph.
</p>
<!-- Assigning id to 'hr' tag. -->
<hr id="GFG" align="left" size="10px"
width="240px" color="red" noshade>
<p>
This is a horizontal rule
above this paragraph.
</p>
<button onclick="myGeeks()">Try it</button>
<h3 id="sudo"></h3>
<script>
function myGeeks() {
// Accessing 'hr' tag.
var x = document.getElementById("GFG").noShade
= "false";
document.getElementById("sudo").innerHTML = x;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
支持的浏览器:下面列出了DOM HR noshade属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Safari
- Opera
相关用法
- HTML Map name用法及代码示例
- HTML DOM id用法及代码示例
- HTML DOM specified用法及代码示例
- HTML li value用法及代码示例
- HTML DOM name用法及代码示例
- HTML DOM value用法及代码示例
- HTML DOM URL用法及代码示例
- HTML Bdo dir用法及代码示例
- HTML DOM dir用法及代码示例
- HTML Button name用法及代码示例
- HTML DOM attributes用法及代码示例
- HTML DOM accessKey用法及代码示例
- HTML Button value用法及代码示例
- HTML IFrame name用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM HR noshade Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。