HTML DOM Input Button name 屬性

2018-08-04 20:40 更新

Input Button name 屬性

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

定義和用法

name 屬性可設(shè)置或者返回 button 元素的 name 屬性值。

name 屬性用于表單提交后向服務(wù)器傳送數(shù)據(jù),或者在Javascript引用表單數(shù)據(jù)。

注意: 在表單提交后只有表單元素的 name 屬性才會(huì)傳遞數(shù)據(jù)值。

語法

設(shè)置 name 屬性:

buttonObject.name="name"

返回 name 屬性:

buttonObject.name


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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


實(shí)例

實(shí)例

顯示按鈕的按鈕 name 屬性值:

<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("button1").name;
alert(x);
}
</script>
</head>
<body>

<form>
<input type="button" onclick="displayResult()" id="button1" name="button1" value="Display name">
</form>

</body>
</html>

嘗試一下 ?


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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)