首页 > 代码库 > 复选框获取值
复选框获取值
<script>function checkbox(){var str=document.getElementsByName("box");var objarray=str.length;var chestr="";j=0;for (i=0;i<objarray;i++){ if(str[i].checked == true) { ++j; if(chestr==""){ chestr+=str[i].value; }else{ chestr+=","+str[i].value; } }}if(chestr == ""){ alert("请先选择一个爱好~!");}else{ alert("您先择的是:"+chestr+" 长度::"+j);}}</script>选择您的爱好: <input type="checkbox" name="box" id="box1" value="跳水" />跳水 <input type="checkbox" name="box" id="box2" value="跑步" />跑步 <input type="checkbox" name="box" id="box3" value="听音乐" />听音乐 <input type="button" name="button" id="button" onclick="checkbox()" value="提交" />
复选框获取值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。