HTML DOM中的選擇名稱屬性用於設置或返回下拉列表的名稱屬性的值。此屬性返回一個字符串,代表下拉列表的名稱。
用法:
- 它返回選擇名稱屬性。
selectObject.name
- 它用於設置選擇名稱屬性。
selectObject.name = name
屬性值:它包含單個值名稱,用於指定下拉列表的名稱。
以下示例程序旨在說明HTML DOM中的Select name屬性:
例:本示例返回下拉列表的name屬性的值。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Select name Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2 style="font-family:Impact;">
Select name Property
</h2><br>
Select your preferred course from the drop-down list:<br>
<select name="Courses Titles" id="myCourses">
<option value="C++">c++</option>
<option value="Placement">Placement</option>
<option value="Java">Java</option>
<option value="Python">Python</option>
</select>
<p>
To return the value of the name attribute of
the drop-down list, double-click the
"Return Name" button.
</p>
<button ondblclick="myGeeks()">
Return Name
</button>
<p id="GFG"></p>
<!-- Script to use DOM Select name Property -->
<script>
function myGeeks() {
var d = document.getElementById("myCourses").name;
document.getElementById("GFG").innerHTML = d;
}
</script>
</body>
</html>
輸出:
單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了DOM Select name屬性支持的瀏覽器:
- 蘋果Safari
- IE瀏覽器
- Firefox
- 穀歌瀏覽器
- Opera
相關用法
- HTML Select value用法及代碼示例
- HTML Select size用法及代碼示例
- HTML Select type用法及代碼示例
- HTML Select multiple用法及代碼示例
- HTML Select length用法及代碼示例
- HTML Select form用法及代碼示例
- HTML Select disabled用法及代碼示例
- HTML Select autofocus用法及代碼示例
- HTML Select selectedIndex用法及代碼示例
- CSS user-select用法及代碼示例
- HTML <select>用法及代碼示例
- HTML DOM Select用法及代碼示例
- HTML <select> name屬性用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Select name Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。