本文实例讲述了js使用DOM设置单选按钮、复选框及下拉菜单的方法。分享给大家供大家参考。具体实现方法如下:
1.设置单选按钮
单选按钮在表单中即<input type=\"radio\" />它是一组供用户选择的对象,但每次只能选一个。每一个都有checked属性,当一项选择为ture时,其它的都变为false.
先贴上一个例子:
function setChoice(iNum) {
var oForm = document.forms[\"uForm1\"];
oForm.camera[iNum].checked = true;
}
</script>
<form method=\"post\" name=\"uForm1\" action=\"addInfo.aspx\">
相机品牌:
<p>
<input type=\"radio\" name=\"camera\" id=\"canon\" value=\"Canon\">
<label for=\"canon\">Canon</label>
</p>
<p>
<input type=\"radio\" name=\"camera\" id=\"nikon\" value=\"Nikon\">
<label for=\"nikon\">Nikon</label>
</p>
<p>
<input type=\"radio\" name=\"camera\" id=\"sony\" value=\"Sony\" checked>
<label for=\"sony\">Sony</label>
</p>
<p>
<input type=\"radio\" name=\"camera\" id=\"olympus\" value=\"Olympus\">
<label for=\"olympus\">Olympus</label>
</p>
<p>
<input type=\"radio\" name=\"camera\" id=\"samsung\" value=\"Samsung\">
<label for=\"samsung\">Samsung</label>
</p>
<p>
<input type=\"radio\" name=\"camera\" id=\"pentax\" value=\"Pentax\">
<label for=\"pentax\">Pentax</label>
</p>
<p>
<input type=\"radio\" name=\"camera\" id=\"others\" value=\"其它\">
<label for=\"others\">others</label>
</p>
<p>
<input type=\"submit\" name=\"btnSubmit\" id=\"btnSubmit\" value=\"Submit\" class=\"btn\">
</p>
<p>
<input type=\"button\" value=\"检测选中对象\" onclick=\"getChoice();\">
<input type=\"button\" value=\"设置为Canon\" onclick=\"setChoice(0);\">
</p>
</form>
本文地址:https://www.stayed.cn/item/10928
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我