Checkbox value 屬性
Checkbox 對象定義和用法
value 屬性可設(shè)置或者返回 checkbox 的value屬性值。
復(fù)選框的 value 屬性值不會顯示在用戶界面中。value 屬性用于表單數(shù)據(jù)的提交(只有選中的復(fù)選框才會傳遞數(shù)據(jù)到服務(wù)端,如果什么都沒選則不傳遞復(fù)選框數(shù)據(jù))。
語法
設(shè)置 value 屬性:
checkboxObject.value="value"
返回value 屬性:
checkboxObject.value
瀏覽器支持
所有主要瀏覽器都支持 value 屬性
實(shí)例
實(shí)例
顯示復(fù)選框關(guān)聯(lián)的值:
<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("bike").value;
alert(x);
}
</script>
</head>
<body>
<form>
<input type="checkbox" id="bike" value="Bike"> I have a bike<br>
</form>
<button type="button" onclick="displayResult()">Display value</button>
</body>
</html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("bike").value;
alert(x);
}
</script>
</head>
<body>
<form>
<input type="checkbox" id="bike" value="Bike"> I have a bike<br>
</form>
<button type="button" onclick="displayResult()">Display value</button>
</body>
</html>
嘗試一下 ?
Checkbox 對象
更多建議: