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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。