HTML DOM中的Select autofocus屬性用於設置或返回是否在頁麵加載時自動使下拉列表具有焦點。如果下拉列表自動獲得焦點,則該屬性返回true,否則返回false。選擇自動對焦屬性反映了HTML自動對焦屬性。
返回自動對焦屬性的語法
selectObject.autofocus
設置自動對焦屬性的語法
selectObject.autofocus = true|false
屬性值
- true:下拉列表會自動對焦。
- false:下拉列表沒有得到關注。
以下示例程序旨在說明選擇自動對焦屬性:
示例1:查找下拉列表是否自動關注頁麵加載。
<!DOCTYPE html>
<html>
<head>
<title>
Select Autofocus Property in HTML
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>
GeeksforGeeks
</h1>
<h2>
Select Autofocus Property
</h2>
<br>
Select your preferred course from the drop-down list:
<select id="Courses" autofocus>
<option value="C++">c++</option>
<option value="Placement">Placement</option>
<option value="Java">Java</option>
<option value="Python">Python</option>
</select>
<p>
To find out if the drop-down list
automatically gets focused upon page load
or not, double-click the "Check" button.
</p>
<button onclick="My_list()">Check</button>
<p id="test"></p>
<script>
function My_list() {
var d =
document.getElementById("Courses").autofocus;
document.getElementById("test").innerHTML = d;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了DOM Select autofocus屬性支持的瀏覽器:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相關用法
- HTML <select> autofocus屬性用法及代碼示例
- HTML Textarea autofocus用法及代碼示例
- HTML Button autofocus用法及代碼示例
- HTML Input URL autofocus用法及代碼示例
- HTML Input Week autofocus用法及代碼示例
- HTML Input Password autofocus用法及代碼示例
- HTML Input Email autofocus用法及代碼示例
- HTML Input Date autofocus用法及代碼示例
- HTML Input Month autofocus用法及代碼示例
- HTML Input Search autofocus用法及代碼示例
- HTML Input Time autofocus用法及代碼示例
- HTML Input Range autofocus用法及代碼示例
- HTML Input image autofocus用法及代碼示例
- HTML Input Radio autofocus用法及代碼示例
- HTML Input Checkbox autofocus用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Select autofocus Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。