HTML DOM中的DOM選擇禁用屬性用於設置或返回是否應禁用下拉列表。禁用的元素不可單擊或無法使用,並且通常在瀏覽器中默認情況下呈灰色。此屬性用於反映HTML禁用的屬性。
用法:
- 它返回禁用的屬性。
selectObject.disabled
- 用於設置禁用的屬性。
selectObject.disabled = true|false
屬性值:
- true:它指定下拉列表將被禁用。
- false:它指定不禁用下拉列表。
返回值:它返回一個布爾值,表示下拉列表是否被禁用。
例:本示例返回一個禁用的屬性,
<!DOCTYPE html>
<html>
<head>
<title>
Select disabled Property in HTML
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>
GeeksforGeeks
</h1>
<h2>
Select disabled Property
</h2>
<select name="Courses Titles"
id="myCourses"
disabled>
<option value="C++">c++</option>
<option value="Placement">Placement</option>
<option value="Java">Java</option>
<option value="Python">Python</option>
</select>
<p>
To return a disabled course from the
dropdown list, double-click the "Select" button.
</p>
<button ondblclick="My_list()">
Select
</button>
<p id="sudo"
style="font-size:24px;
color:green">
</p>
<script>
function My_list() {
var g = document.getElementById(
"myCourses").disabled;
document.getElementById("sudo").innerHTML = g;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例設置禁用的屬性。
<!DOCTYPE html>
<html>
<head>
<title>
Select disabled Property in HTML
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>
GeeksforGeeks
</h1>
<h2>
Select disabled Property
</h2>
<select name="Courses Titles"
id="myCourses"
disabled>
<option value="C++">c++</option>
<option value="Placement">Placement</option>
<option value="Java">Java</option>
<option value="Python">Python</option>
</select>
<p>
To set a disabled course from the dropdown
list, double-click the "Select" button.
</p>
<button ondblclick="My_list()">
Select
</button>
<p id="sudo"
style="font-size:24px;
color:green">
</p>
<script>
function My_list() {
var g = document.getElementById(
"myCourses").disabled = "false";
document.getElementById("sudo").innerHTML = g;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:
- 穀歌瀏覽器
- 火狐瀏覽器
- Edge
- Opera
- Safari
相關用法
- HTML OptionGroup disabled用法及代碼示例
- HTML Textarea disabled用法及代碼示例
- HTML Option disabled用法及代碼示例
- HTML Fieldset disabled用法及代碼示例
- HTML Input URL disabled用法及代碼示例
- HTML Link disabled用法及代碼示例
- HTML Button disabled用法及代碼示例
- HTML Input Password disabled用法及代碼示例
- HTML Input Range disabled用法及代碼示例
- HTML Input Checkbox disabled用法及代碼示例
- HTML Input Week disabled用法及代碼示例
- HTML Input Email disabled用法及代碼示例
- HTML Input Month disabled用法及代碼示例
- HTML Input Date disabled用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Select disabled Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。