DOM Button值屬性用於設置或返回按鈕元素的value屬性的值。 HTML中<button>元素的value屬性用於指定button元素的初始值。
用法:
- 它用於返回value屬性。
buttonObject.value
- 用於設置value屬性。
buttonObject.value = text
屬性值:
- text:它指定Button的初始值。
返回值:它返回一個代表按鈕初始值的字符串值。
示例1:該Html程序說明了如何返回值Property。
<!DOCTYPE html>
<html>
<head>
<title>DOM button value Property
</title>
</head>
<body style="text-align:center">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
DOM button value Property
</h2>
<button id="btn"
value="GeeksforGeeks"
onclick="geek()">
Click me!
</button>
<p id="g"
style="font-size:25px;color:green;">
</p>
<script>
function geek() {
var x =
document.getElementById("btn").value;
document.getElementById("g").innerHTML =
x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:該HTML程序說明了如何設置值Property。
<!DOCTYPE html>
<html>
<head>
<title>DOM button value Property
</title>
</head>
<body style="text-align:center">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
DOM button value Property
</h2>
<button id="btn"
value="User"
onclick="geek()">
Click me!
</button>
<p id="g"
style="font-size:25px;
color:green;">
</p>
<script>
function geek() {
var x =
document.getElementById("btn").value =
"GeeksForGeeks"
document.getElementById("g").innerHTML =
"The value has been changed from user to " +
x;
}
</script>
</body>
</html>
輸出:
在點擊Buttton之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了DOM Button value屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML Button name用法及代碼示例
- HTML Button autofocus用法及代碼示例
- HTML Button formEnctype用法及代碼示例
- HTML Button formNoValidate用法及代碼示例
- HTML Button formMethod用法及代碼示例
- HTML Button formTarget用法及代碼示例
- HTML Button formAction用法及代碼示例
- HTML Button form用法及代碼示例
- HTML Button disabled用法及代碼示例
- HTML Input Button name用法及代碼示例
- HTML Button type用法及代碼示例
- HTML Input Button value用法及代碼示例
- HTML Input Button disabled用法及代碼示例
- HTML Input Button autofocus用法及代碼示例
- HTML Input Button form用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Button value Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。