html中input框中的radio是否被選中的判斷
發(fā)表時(shí)間:2024-01-02 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]少寫文字, 直接用代碼說話:<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)站。