美文网首页
前端jquery操作记录

前端jquery操作记录

作者: jd_steven | 来源:发表于2017-06-17 11:03 被阅读0次

    1.jquery获取到页面指定的chekcbox的值

    通过name去获取所有选中的checkBox的value

    通过name获取选中值的方法:

    //jquery获取复选框值

    functionjqchk(idParam){

    varchk_value =[];

    $(idParam).each(function(){

    chk_value.push($(this).val());

    });

    returnchk_value;

    }

    调用处:

    varbussLine;

    if(parentType==1|| parentType==3){

    bussLine=jqchk('input[name="cps-check"]:checked');

    }else if(parentType ==2){

    bussLine=jqchk('input[name="cpa-check"]:checked');

    }

    2.取消checkBox的选中内容:

    $('input[name="cpa-check"]:checked').removeAttr("checked");//取消全选

    相关文章

      网友评论

          本文标题:前端jquery操作记录

          本文链接:https://www.haomeiwen.com/subject/vdbvqxtx.html