HTML DOM中的DOM输入颜色禁用属性用于设置或返回是否应该禁用颜色选择器。默认情况下,在所有浏览器中,禁用元素通常都不可用,并且un-clickable通常为灰色。此属性用于反映HTML禁用的属性。
用法:
- 它用于返回禁用的属性。
colorObject.disabled
- 用于设置禁用的属性。
colorObject.disabled = true|false
属性值:
- true:它指定禁用颜色选择器。
- false:它具有默认值。它定义了不会禁用颜色选择器。
返回值:它返回一个布尔值,该布尔值表示颜色选择器是否被禁用。
示例1:本示例说明了如何返回属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Color disabled Property
</title>
</head>
<body style="text-align:center;">
<h1>
GeeksForGeeks
</h1>
<h2>
HTML DOM Input Color disabled Property
</h2>
<form id="myGeeks">
<label>
Select your favorite color:
</label>
<input type="color"
value="#009900"
name="Geek_color"
id="color"
disabled>
</form>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG"
style="color:green;
font-size:24px;">
</p>
<script>
function myGeeks() {
var x =
document.getElementById(
"color").disabled;
document.getElementById(
"GFG").innerHTML = x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例2:本示例说明了如何设置属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Color disabled Property
</title>
</head>
<body style="text-align:center;">
<h1>
GeeksForGeeks
</h1>
<h2>
HTML DOM Input Color disabled Property
</h2>
<form id="myGeeks">
<label>
Select your favorite color:
</label>
<input type="color"
value="#009900"
name="Geek_color"
id="color"
disabled>
</form>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG"
style="color:green;
font-size:24px;">
</p>
<script>
function myGeeks() {
var x =
document.getElementById(
"color").disabled = false;
document.getElementById("GFG").innerHTML = x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:DOM输入颜色禁用属性支持的浏览器如下:
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相关用法
- HTML Input URL disabled用法及代码示例
- HTML Input DatetimeLocal disabled用法及代码示例
- HTML Input Time disabled用法及代码示例
- HTML Input Number disabled用法及代码示例
- HTML Input Text disabled用法及代码示例
- HTML Input Email disabled用法及代码示例
- HTML Input Reset disabled用法及代码示例
- HTML Input Submit disabled用法及代码示例
- HTML Input Radio disabled用法及代码示例
- HTML Input Week disabled用法及代码示例
- HTML Input Date disabled用法及代码示例
- HTML Input Datetime disabled用法及代码示例
- HTML Input FileUpload disabled用法及代码示例
- HTML Input Month disabled用法及代码示例
- HTML Input Range disabled用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Color disabled Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。