HTML DOM输入图像禁用属性用于设置或返回表示应该禁用图像字段的布尔值。默认情况下,禁用的元素以灰色显示,并且不可用和不可单击。
用法:
- 它返回禁用的属性。
imageObject.disabled
- 用于设置禁用的属性。
imageObject.disabled = true|false
属性值:此属性接受上面提到并在下面描述的两个参数:
- true:它指定图像字段被禁用。
- false:它指定图像字段未禁用。
返回值:它返回一个布尔值,即如果禁用了image字段,则返回true;如果未禁用image字段,则返回false。
范例1:本示例返回Disabled属性的值
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image Disabled property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h4>
DOM Input Image Disabled Property
</h4>
<input id="myImage" formEnctype="application/x-www-form-urlencoded"
type="image" formtarget="#" src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit" width="48" height="48" formMethod="post"
disabled>
<br>
<br>
<button onclick="my_geek()">Submit </button>
<h2 id="Geek_h" style="color:green;"></h2>
<script>
function my_geek() {
// Return target, alt and height.
var txt = document.getElementById(
"myImage").disabled;
document.getElementById(
"Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
范例2:本示例设置Disabled属性的值。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image Disabled property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h4>
DOM Input Image Disabled Property
</h4>
<input id="myImage" formEnctype="application/x-www-form-urlencoded"
type="image" formtarget="#" src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit" width="48" height="48" formMethod="post"
disabled>
<br>
<br>
<button onclick="my_geek()">Submit </button>
<h2 id="Geek_h" style="color:green;"></h2>
<script>
function my_geek() {
// set Disabled Property.
var txt = document.getElementById(
"myImage").disabled = false;
document.getElementById(
"Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
支持的浏览器:下面列出了HTML DOM输入图像禁用属性支持的浏览器:
- 谷歌浏览器10.0
- Firefox 4.0
- Opera 11.0
- Safari 5.1
相关用法
- HTML Input URL disabled用法及代码示例
- HTML Input Range disabled用法及代码示例
- HTML Input Checkbox disabled用法及代码示例
- HTML Input Time disabled用法及代码示例
- HTML Input FileUpload disabled用法及代码示例
- HTML Input Submit disabled用法及代码示例
- HTML Input Reset disabled用法及代码示例
- HTML Input Button disabled用法及代码示例
- HTML Input Date disabled用法及代码示例
- HTML Input Search disabled用法及代码示例
- HTML Input Text disabled用法及代码示例
- HTML Input Password disabled用法及代码示例
- HTML Input Radio disabled用法及代码示例
- HTML Input Email disabled用法及代码示例
- HTML Input Week disabled用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Image disabled Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。