HTML DOM Button name 屬性

2018-08-04 20:39 更新

Button name 屬性

Button 對(duì)象參考手冊(cè) Button 對(duì)象

定義和用法

name 屬性可設(shè)置或者返回按鈕的 name 屬性值。

name 屬性制訂了按鈕的名稱(chēng),常用于在表單提交后數(shù)據(jù)在后臺(tái)動(dòng)態(tài)語(yǔ)言的引用,或者用于在Javascript中元素的引用。/p>

語(yǔ)法

buttonObject.name=name


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 name 屬性。


實(shí)例

實(shí)例

返回按鈕的 name 屬性值:

<html>
<body>

<button id="button1" name="button1">Click Me!</button>

<p>The name of the button is:
<script>
document.write(document.getElementById("button1").name);
</script></p>

</body>
</html>

嘗試一下 ?


Button 對(duì)象參考手冊(cè) Button 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線(xiàn)筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)