1. 程式人生 > >html之radio是否被選中的判斷------radio只是input的type屬性

html之radio是否被選中的判斷------radio只是input的type屬性

       少寫文字, 直接用程式碼說話:

<html>

<body>


男性:<input type="radio" id="male" name="xxx"/>
<br />
女性:<input type="radio" id="female" name="xxx"/>
<br />

<button onClick="output()">test</button>

<script>
function output()
{
    if(document.getElementById("male").checked)
	{
		alert("1");
	}

    if(document.getElementById("female").checked)
	{
		alert("2");
	}
}
</script>

</body>
</html>
       搞定。