最新的Web開發教程
 

Select name Property

<選擇對象

返回的值name下拉列表的屬性:

var x = document.getElementById("mySelect").name;

x的結果將是:

selectName
試一試»

定義和用法

name屬性設置或返回的值name下拉列表的屬性。

name屬性用於標識表格數據已經提交到服務器後,或引用在客戶端使用JavaScript表單數據。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

name屬性在所有主流瀏覽器的支持。


句法

返回name屬性:

selectObject .name

將Name屬性設置:

selectObject .name= 屬性值
描述
name 指定下拉列表的名稱

技術細節

返回值: 一個String,代表下拉列表的名稱

更多示例

更改的值name下拉列表的屬性:

document.getElementById("mySelect").name = "newName";
試一試»

相關頁面

HTML參考: HTML <select> name屬性


<選擇對象