Latest web development tutorials

HTML DOM Radio type 屬性

Radio 對象參考手冊 Radio對象

定義和用法

type 屬性可返回單選按鈕的表單元素類型。

對於單選按鈕,該屬性總是"radio"。

語法

radioObject.type


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持type 屬性


實例

實例

下面的例子可返回單選按鈕的表單元素類型:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<script>
function displayResult(){
var x=document.getElementById("red").type;
alert(x);
}
</script>
</head>
<body>

<form>
你更喜歡哪種顏色?<br>
<input type="radio" name="colors" id="red">紅色<br>
<input type="radio" name="colors" id="blue">藍色<br>
<input type="radio" name="colors" id="green">綠色
</form>
<button type="button" onclick="displayResult()">顯示input 類型</button>

</body>
</html>

嘗試一下»


Radio 對象參考手冊 Radio對象