Jquery中的checkbox 及radio的问题

  在web开发中,我们经常会对checkbox和radio进行读写操作,下面我来分享一下我的项目中的相关案例:

  一、checkbox

  <input id="check1" class="othercheck" type="checkbox" name="othercheck" value="1">1

  1.判断单个已知checkbox是否选中

  var ischeck=$("#check1").is(‘:checked‘);//获取此checkbox是否选中,被选中则 ischeck=true  反之为 false

  2.判断多个name=test的checkbox是否选中

  function judgechecked(){ 
    var obj=document.getElementsByName(‘test‘); //选择所有name="‘test‘"的对象,返回数组 
    //取到对象数组后,我们来循环检测它是不是被选中 
    var s=‘‘; 
    for(var i=0; i<obj.length; i++){ 
      if(obj[i].checked)

        s+=obj[i].value+‘,‘; //如果选中,将value添加到变量s中 
    } 
    //那么现在来检测s的值就知道选中的复选框的值了 
    alert(s==‘‘?‘你还没有选择任何内容!‘:s); //条件运算符
    }

  3.//jquery获取复选框值

  function getcheckval(){
      var chk_value =[]; 
      $(‘input[name="test"]:checked‘).each(function(){ 
        chk_value.push($(this).val()); //
      }); 
      alert(chk_value.length==0 ?‘你还没有选择任何内容!‘:chk_value); 
    }

  或者获得拼接字符串

  function getcheckval(){

    var str=""; 
    $("[name=‘checkbox‘][checked]").each(function(){ 
      str+=$(this).val()+",";
    }) 
    alert(str); 
    })

  4.全选

    1)点击button全选

    $("#btn1").click(function(){ 
      $("[name=‘checkbox‘]").attr("checked",‘true‘);//全选 
    }) 
    $("#btn2").click(function(){ 
      $("[name=‘checkbox‘]").removeAttr("checked");//取消全选 
    })

    2)选中checkbox全选及取消

    <input id="checkAll" type="checkbox" onclick="checkAll(‘checkbox‘)" name="checkAll">//选中触发checkAll()函数,选中所有name为checkbox的复选框

    function checkAll(checkname){
        var checkid = document.getElementById("checkAll")
        var check = document.getElementsByName(Obj)
        if (checkid.checked){     
          $("[name=‘checkname‘]").attr("checked",‘true‘);//全选
     }else{          
           $("[name=‘checkname‘]").removeAttr("checked");//取消全选
       }
    }

  5.给checkbox赋值

  $(‘input:checkbox‘).eq(索引值).attr(‘checked‘,‘true‘);//索引值=0,1,2

  $(‘input:checkbox‘).slice(0,2).attr(‘checked‘,‘true‘);//同时选中第一个和第三个checkbox

  $(‘input:checkbox:first‘).attr(‘checked‘,‘checked‘);//设置第一个checkbox为选中值

  $(‘input:checkbox:last‘).attr(‘checked‘,‘checked‘);//设置第一个checkbox为选中值

  $(‘input:checkbox[value=‘1‘]‘).attr(‘checked‘,‘true‘);//根据value值设置checkbox为选中

  $("input").attr("checked","checked");  
  $("input").attr("checked",true);

  6.删除操作

  $(‘input:checkbox[value=‘1‘]‘).remove();//删除value=1的checkbox

  $(‘input:checkbox‘).eq(索引值).remove();//索引值=0,1,2,删除第几个checkbox

  二、radio

  <input id="radiono" type="radio" value="1" name="isused">

  var isused=$(‘input:radio[name="isused"]:checked‘).val();//获取radio的value值

  分组: 只要name一样,就是一组的,即一组中只能选择一个

    <input type="radio" id="radio1" checked="checked" name="group1" />radio1 
    <input type="radio" id="radio2" name="group1" />radio2 
    <input type="radio" id="radio3" name="group1" />radio3

    var group1 = $("[name=‘group1‘]").filter(":checked"); 
    alert(group1.attr("id"));

  根据id选中radio

  $("#radio2").attr("checked", "checked");

  根据id取消选中radio

  $("#radio1").removeAttr("checked");

  一组中某一个被选中触发函数

  $("[name=‘group1‘]").on("change", 
    function (e) { 
      console.log($(e.target).val()); //得到选中值的value
    } 
  );

  任何元素都可以有点击事件onclick,在onclick中给函数传值  如

  <input id="57*1" type="radio" onclick="chkRadio(this)" value="5" name="radio1">

  var flag = true;
  function chkRadio(checkedradio) {//点击选中,再点击取消选中
      checkedradio.checked = flag;
      flag = !flag;
    }

  <img id="tttxx" onclick="isShowtheHidden(this.id);" src="/webStatic/image/back/hfk.png" style="margin-top: -20px;float:right;">

  function isShowtheHidden(id){
      id为被选中radio的id值
  }

  

时间: 2025-01-02 20:38:33

Jquery中的checkbox 及radio的问题的相关文章

jQuery实现自定义checkbox和radio样式

jQuery实现自定义checkbox和radio样式 1,起因 最近在工作中要实现自定义式的radio样式,而我们通常使用的时默认的样式,因为自己实在想不到解决的方法,于是开始搜索,最终看到了不错的解决办法,可以完美解决我们遇到的问题. 2,原理 大家都知道在写结构的时候,radio或checkbox都会跟随label一起使用,label的for属性值和input的id值相同的情况下,点击label就可以选中input,这里正是利用label 来覆盖我们的input默认样式,通过给label添

js、jquery中判断checkbox是否被选中的方法

在js中: document.getElementById("checkboxID").checked   返回true或者false jQuery中: $("input[type='checkbox']").is(':checked') 返回true或false attr()方法  设置或者返回备选元素的值 attr(属性名)    //获取属性的值 attr(属性名,属性值)   //设置属性的值 ---- $("#id]").attr(&q

Jquery mobile中的 checkbox和radio的设置问题

在Jquery Mobile网页中用JS控制Radio的状态一直达不到目的. 用$("input[name='radio']:first").prop("checked",true)设置checked的时候,用.attr("checked")读取不到值. 用$("input[name='radio']:first").attr("checked",true)设置checked的时候,页面显示状态变为两个都不

Jquery中的CheckBox、RadioButton、DropDownList的取值赋值实现代码

由于Jquery的版本更新很快,代码的写法也改变了许多,以下Jquery代码适query1.4版本以上Radio 1.获取选中值,三种方法都可以: $('input:radio:checked').val(): $("input[type='radio']:checked").val(); $("input[name='rd']:checked").val(); 2.设置第一个Radio为选中值: $('input:radio:first').attr('check

通过jQuery中的选择器获取radio的值

使用jquery获取radio的值,最重要的是掌握jquery选择器的使用,在一个表单中我们通常是要获取被选中的那个radio项的值,所以要加checked来筛选,比如有以下的一些radio项: 1.<input type="radio" name="testradio" value="jquery获取radio的值" />jquery获取radio的值2.<input type="radio" name=&

Jquery中对checkbox的各种“全选”或者“取消”功能实现(特别注意1.6+的一定不能使用attr来取属性了!用prop!)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> </h

jQuery中对checkbox设置checked无用解决办法

1. 对html中的多选框设置选择和取消选择,如  $("#id").attr('checked',true);$("#id").attr('checked',false).如果在调试栏中查看elements属性,可以看出,checked是已经设置成功了的,但是在html中不能表现出来. 2. 解决办法 :用prop设置.prop的值为ture或者false.方法如下: $("#id").prop('checked',true); $("

Jquery 中的CheckBox、 RadioButton、 DropDownList的取值赋值

1.获取选中值,三种方法都可以: $('input:radio:checked').val(): $("input[type='radio']:checked").val(); $("input[name='rd']:checked").val(); 2.设置第一个Radio为选中值: $('input:radio:first').attr('checked', 'checked'); 或者 $('input:radio:first').attr('checked'

JQuery中判断checkbox是否选中

if ($("#wds_checkbox").attr("checked")) { flag = 1; } else { flag = 0; } 禁用鼠标右键 //屏蔽浏览器右键 document.oncontextmenu = function () { return false; }