DOM按鈕名稱屬性用於設置或返回按鈕元素的名稱屬性的值。 name屬性用於指定按鈕的名稱,當用戶提交表單數據時,它用於引用表單數據。它還指的是javascript中的元素。
用法:
- 它用於返回name屬性。
buttonObject.name
- 它用於設置name屬性。
buttonObject.name = name
屬性值
- name:它指定按鈕的名稱。
返回值它返回一個表示Button名稱的字符串值。
示例1:該程序說明了如何返回名稱Property。
<!DOCTYPE html>
<html>
<head>
<title>DOM button name Property</title>
</head>
<body style="text-align:center">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
DOM button name Property
</h2>
<button id="btn" name="myGeeks" onclick="geek()">
Click me!</button>
<p id="g" style="font-size:25px;color:green;"></p>
<script>
function geek() {
// Return name value.
var x = document.getElementById("btn").name;
document.getElementById("g").innerHTML = x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:該程序說明了如何顯示和更改名稱Property。
<!DOCTYPE html>
<html>
<head>
<title>DOM button name Property</title>
</head>
<body style="text-align:center">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
DOM button name Property
</h2>
<body>
<button id="GFG" name="myuser">My Button
</button>
<b>
<p>
Click the buttons below to display and/or
change the value of the name attribute
of the button above.
</p>
</b>
<button onclick="display()">
Display name
</button>
<button onclick="change()">
Change name
</button>
<script>
function display() {
var x = document.getElementById("GFG").name;
alert("The name of the button is:" + x);
}
function change() {
// Set button name value.
var x = document.getElementById("GFG").name =
"GeeksForGeeks";
alert ("The name was changed to:" + x);
}
</script>
</body>
</html>
輸出:
原來:
在點擊顯示按鈕之前:
單擊更改按鈕後:
支持的瀏覽器:下麵列出了DOM Button name屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML Button value用法及代碼示例
- HTML Button formTarget用法及代碼示例
- HTML Button type用法及代碼示例
- HTML Button autofocus用法及代碼示例
- HTML Button disabled用法及代碼示例
- HTML Button formMethod用法及代碼示例
- HTML Button formEnctype用法及代碼示例
- HTML Button form用法及代碼示例
- HTML Button formAction用法及代碼示例
- HTML Input Button value用法及代碼示例
- HTML Input Button name用法及代碼示例
- HTML Button formNoValidate用法及代碼示例
- HTML Input Button type用法及代碼示例
- HTML Input Button disabled用法及代碼示例
- HTML Input Button autofocus用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Button name Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。