Input Button name 屬性
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
瀏覽器支持
所有主要瀏覽器都支持 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>
<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ì)象
更多建議: