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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。