|
热门文章 |
|
|
|
相关文章 |
|
没有相关文章 |
|
|
Javascript判断复选框至少选中1个 |
来源:www.cwydesign.com 更新时间:2009/7/28 15:58:15 阅读次数:
字体:[大 中 小大 中 小大 中 小] 我要投稿 |
<form name="form1" onsubmit="return checkF(this)"> <input type="checkbox" name="Ctype" id="Ctype_1" value="1"><label for="Ctype_1">域名注册</label> <input type="checkbox" name="Ctype" id="Ctype_2" value="2"><label for="Ctype_2">虚拟空间</label> <input type="checkbox" name="Ctype" id="Ctype_3" value="3"><label for="Ctype_3">企业邮局</label> <input type="checkbox" name="Ctype" id="Ctype_4" value="4"><label for="Ctype_4">数据库空间</label> <input type="checkbox" name="Ctype" id="Ctype_5" value="5"><label for="Ctype_5">专用服务器</label> <br><input type="submit" name="submit" value="添加(S)" accesskey="s"></form> <script> function checkF(theForm){ var ifcheck="no" for(i=0;i<theForm.Ctype.length;i++){ if(theForm.Ctype[i].checked){ ifcheck="yes" } } if(ifcheck=="no"){ alert("请选择一个") return false; } } </script> |
上一篇文章: JavaScript简单实现判断提交的表单不能为空下一篇文章: 关键字加亮的JS方法 |
|
|