1.设置单选按钮
单选按钮在表单中即<input type="radio" />它是一组供用户选择的对象,但每次只能选一个。每一个都有checked属性,当一项选择为ture时,其它的都变为false.
先贴上一个例子:
复制代码 代码如下:
<script type="text/javascript">
function getChoice() {
var oForm = document.forms["uForm1"];
var aChoices = oForm.camera;
for (i = 0; i < aChoices.length; i++) //遍历整个单选项表
if (aChoices[i].checked) //如果发现了被选中项则退出
break;
alert("相机品牌是:" + aChoices[i].value);
}
function setChoice(iNum) {
var oForm = document.forms["uForm1"];
oForm.camera[iNum].checked = true;
}
</script>
<form method="post" action="addInfo.aspx">
相机品牌:
<p>
<input type="radio" value="Canon">
<label for="canon">Canon</label>
</p>
<p>
<input type="radio" value="Nikon">
<label for="nikon">Nikon</label>
</p>
<p>
<input type="radio" value="Sony" checked>
<label for="sony">Sony</label>
</p>
<p>
<input type="radio" value="Olympus">
<label for="olympus">Olympus</label>
</p>
<p>
<input type="radio" value="Samsung">
<label for="samsung">Samsung</label>
</p>
<p>
<input type="radio" value="Pentax">
<label for="pentax">Pentax</label>
</p>
<p>
<input type="radio" value="其它">
<label for="others">others</label>
</p>
<p>
<input type="submit" value="Submit">
</p>
<p>
<input type="button" value="检测选中对象">
<input type="button" value="设置为Canon">
</p>
</form>
单选按钮在表单中即<input type="radio" />它是一组供用户选择的对象,但每次只能选一个。每一个都有checked属性,当一项选择为ture时,其它的都变为false.
从以上代码中看出,id和name是不同的,一组单选按钮中它们的name是相同的,只有一个被选中。id则是绑定<label>或者其它选择作用的。
其中代码中:检查被选中对象的代码是(当某一项的chcked值为ture时,遍历结束)
复制代码 代码如下:
var oForm = document.forms["uForm1"];
var aChoices = oForm.camera;
for (i = 0; i < aChoices.length; i++) //遍历整个单选项表
if (aChoices[i].checked) //如果发现了被选中项则退出
break;
alert("相机品牌是:" + aChoices[i].value);
2.设置多选框
与单选按钮不同,复选框<input type="checkbox" />可以同时选中多个选项进行处理,邮箱中每条邮件之前的复选框就的典型的运用
复制代码 代码如下:
<script type="text/javascript">
function checkbox() {
var str = document.getElementsByName("hobby");
var objarray = str.length;
var chestr = "";
for (j = 0; j < objarray; j++) {
if (str[j].checked == true) {
chestr += str[j].value + ",";
}
}
if (chestr == "") {
alert("请先选择一个爱好~!");
} else {
alert("您先择的是:" + chestr);
}
}
function changeBoxes(action) {
var oForm = document.forms["myForm1"];
var oCheckBox = oForm.hobby;
for (var i = 0; i < oCheckBox.length; i++) //遍历每一个选项
if (action < 0) //反选
oCheckBox[i].checked = !oCheckBox[i].checked;
else //action为1是则全选,为0时则全不选
oCheckBox[i].checked = action;
}
</script>