如何判断所有的checkbox中是否有选中的?
是不是很简单,我看着也很简单,但是我就是不知道怎么做。比如有5个checkbox,他们的ID分别是ch_1,ch_2...ch_5。用javascript判断他们之中是否...
是不是很简单,我看着也很简单,但是我就是不知道怎么做。
比如有5个checkbox,他们的ID分别是ch_1,ch_2...ch_5。
用javascript判断他们之中是否有选中的。如果没有选中的就alert()一下。
在button的onclick事件触发。 展开
比如有5个checkbox,他们的ID分别是ch_1,ch_2...ch_5。
用javascript判断他们之中是否有选中的。如果没有选中的就alert()一下。
在button的onclick事件触发。 展开
2个回答
展开全部
<div>
<input type=checkbox id="ch_1">
<input type=checkbox id="ch_2">
<input type=checkbox id="ch_3">
<input type=checkbox id="ch_4">
<input type=checkbox id="ch_5">
<input type=button value="button" onclick="checkit()">
</div>
<script>
function checkit()
{
var chk = false;
for(var i=1;i<6;i++)
if(document.getElementById("ch_"+i).checked) chk=true;
if(!chk)alert("没有选择");
}
</script>
<input type=checkbox id="ch_1">
<input type=checkbox id="ch_2">
<input type=checkbox id="ch_3">
<input type=checkbox id="ch_4">
<input type=checkbox id="ch_5">
<input type=button value="button" onclick="checkit()">
</div>
<script>
function checkit()
{
var chk = false;
for(var i=1;i<6;i++)
if(document.getElementById("ch_"+i).checked) chk=true;
if(!chk)alert("没有选择");
}
</script>
展开全部
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 1</title>
<script>
function aa(){
var num=document.forms[0].length;
var flag=true;
for (var i=0;i<num;i++){
if (document.forms[0].item(i).type=="checkbox"){
if (document.forms[0].item(i).checked){
flag=false;
alert(document.forms[0].item(i).id)
}
}
}
if(flag)
alert("checkbox一个没选");
}
</script>
</head>
<body>
<form id="form1">
<input type=checkbox id="ch_1">
<input type=checkbox id="ch_2">
<input type=checkbox id="ch_3">
<input type=checkbox id="ch_4">
<input type=checkbox id="ch_5">
<input type=button value="checkBox" onclick="aa()">
</form>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 1</title>
<script>
function aa(){
var num=document.forms[0].length;
var flag=true;
for (var i=0;i<num;i++){
if (document.forms[0].item(i).type=="checkbox"){
if (document.forms[0].item(i).checked){
flag=false;
alert(document.forms[0].item(i).id)
}
}
}
if(flag)
alert("checkbox一个没选");
}
</script>
</head>
<body>
<form id="form1">
<input type=checkbox id="ch_1">
<input type=checkbox id="ch_2">
<input type=checkbox id="ch_3">
<input type=checkbox id="ch_4">
<input type=checkbox id="ch_5">
<input type=button value="checkBox" onclick="aa()">
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |