• js 判断checkbox是否选中的实例代码


    分享下js判断是否选中CheckBox的方法。

    代码如下:

    <input type="checkbox" name="checkbox1" checked> 
    <input type="checkbox" name="checkbox1"> 
    <input type="checkbox" name="checkbox1" checked> 
    <input type="checkbox" name="checkbox1"> 
    <input type="checkbox" name="checkbox1"> 
    <script language=javascript> 
    function check(obj) 
    {
    
    for(i=0;i<document.all(obj).length;i++) 
    { 
    if(!document.all(obj)[i].checked)alert("第"+(i+1)+"个没有选择") 
    } //by www.jbxue.com
    } 
    </script> 
    <input type=button onclick="check('checkbox1')" value="检测">
    
    //一个也没有选 
    <input type="checkbox" name="test"> 
    <input type="checkbox" name="test"> 
    <input type="checkbox" name="test"> 
    <input type="checkbox" name="test"> 
    <input type="checkbox" name="test"> 
    <Script Language="JavaScript"> 
    function check(obj){ 
    for(i=0;i<document.all(obj).length;i++){ 
    if(document.all(obj)(i).checked){ 
    return; 
    } 
    } 
    window.alert('一个也没有选!'); 
    } 
    </Script> 
    <input type=button onclick="check('test');" value="检测">
    
    //第几个没有选 
    <input type="checkbox" name="checkbox1" checked> 
    <input type="checkbox" name="checkbox1"> 
    <input type="checkbox" name="checkbox1" checked> 
    <input type="checkbox" name="checkbox1"> 
    <input type="checkbox" name="checkbox1"> 
    <script language=javascript> 
    function check(obj) 
    {
    
    for(i=0;i<document.all(obj).length;i++) 
    { 
    if(!document.all(obj)[i].checked)alert("第"+(i+1)+"个没有选择") 
    } 
    } //by www.jbxue.com
    </script> 
    <input type=button onclick="check('checkbox1')" value="检测">
    
    //一个也没有选 
    <input type="checkbox" name="test"> 
    <input type="checkbox" name="test"> 
    <input type="checkbox" name="test"> 
    <input type="checkbox" name="test"> 
    <input type="checkbox" name="test"> 
    <Script Language="JavaScript"> 
    function check(obj){ 
    for(i=0;i<document.all(obj).length;i++){ 
    if(document.all(obj)(i).checked){ 
    return; 
    } 
    } 
    window.alert('一个也没有选!'); 
    } 
    </Script> 
    <input type=button onclick="check('test');" value="检测">
  • 相关阅读:
    安装Hadoop
    爬虫综合大作业
    理解爬虫原理
    中文词频统计与词云生成
    复合数据类型,英文词频统计
    字符串操作、文件操作,英文词频统计预处理
    了解大数据的特点、来源与数据呈现方式
    结对项目-四则运算 “软件”之升级版
    分布式版本控制系统Git的安装与使用
    Maven 依赖的scope标签用法
  • 原文地址:https://www.cnblogs.com/cfinder010/p/3204612.html
Copyright © 2020-2023  润新知