明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

html中input框中的radio是否被選中的判斷

[摘要]少寫文字, 直接用代碼說話:<html><body>男性:<input type="radio" id="male" name="xxx"/><br />女性:<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>

搞定。

以上就是html中input框中的radio是否被選中的判斷的詳細內(nèi)容,更多請關注php中文網(wǎng)其它相關文章!


網(wǎng)站建設是一個廣義的術語,涵蓋了許多不同的技能和學科中所使用的生產(chǎn)和維護的網(wǎng)站。