Button name 屬性
Button 對象定義和用法
name 屬性可設(shè)置或者返回按鈕的 name 屬性值。
name 屬性制訂了按鈕的名稱,常用于在表單提交后數(shù)據(jù)在后臺動態(tài)語言的引用,或者用于在Javascript中元素的引用。/p>
語法
buttonObject.name=name
瀏覽器支持
所有主要瀏覽器都支持 name 屬性。
實例
實例
返回按鈕的 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>
<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 對象
更多建議: