HTML DOM中的DOM輸入搜索禁用屬性用於返回一個布爾值,該布爾值表示應禁用或不禁用搜索字段。默認情況下,禁用的元素以灰色顯示,並且不可用和un-clickable。
用法:
- 它返回禁用的屬性。
searchObject.disabled
- 用於設置禁用的屬性。
searchObject.disabled = true
屬性值:
- true:它指定搜索字段已禁用。
- false:它指定搜索字段未禁用。
返回值:它返回一個布爾值,即如果禁用了搜索字段,則返回true;如果未禁用搜索字段,則返回false。
示例1:本示例返回Disabled屬性的值。
<!DOCTYPE html>
<html>
<head>
<title>
Input Search disabled Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Input Search Disabled Property</h2>
<form id="myGeeks">
<input type="Search"
id="test"
name="myGeeks"
placeholder="Type to search.."
disabled>
</form>
<br>
<br>
<button ondblclick="Access()">
click here
</button>
<p id="check"
style="font-size:24px;
color:green;">
</p>
<script>
function Access() {
// type="search"
var s = document.getElementById(
"test").disabled;
document.getElementById(
"check").innerHTML = s;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例說明了如何設置屬性。
<!DOCTYPE html>
<html>
<head>
<title>Input Search disabled Property</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Input Search Disabled Property</h2>
<form id="myGeeks">
<input type="Search"
id="test"
name="myGeeks"
placeholder="Type to search.."
disabled>
</form>
<br>
<br>
<button ondblclick="Access()">
click here
</button>
<p id="check"
style="font-size:24px;
color:green;">
</p>
<script>
function Access() {
// type="search"
var s = document.getElementById(
"test").disabled = false;
document.getElementById(
"check").innerHTML = s;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:DOM輸入搜索禁用的瀏覽器支持的屬性如下所示:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相關用法
- HTML Input URL disabled用法及代碼示例
- HTML Input Password disabled用法及代碼示例
- HTML Input Date disabled用法及代碼示例
- HTML Input Color disabled用法及代碼示例
- HTML Input Range disabled用法及代碼示例
- HTML Input Time disabled用法及代碼示例
- HTML Input Checkbox disabled用法及代碼示例
- HTML Input Month disabled用法及代碼示例
- HTML Input Radio disabled用法及代碼示例
- HTML Input Text disabled用法及代碼示例
- HTML Input Number disabled用法及代碼示例
- HTML Input Submit disabled用法及代碼示例
- HTML Input Week disabled用法及代碼示例
- HTML Input Datetime disabled用法及代碼示例
- HTML Input Reset disabled用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Search disabled Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。