明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

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是否被選中的判斷的詳細(xì)內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!


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