jQuery选择所有分页不起作用

时间:2018-06-13 12:41:12

标签: javascript jquery laravel

我的问题是

  

1.如果用户单击全选,我想选择所有行。 注意:不使用数据表,因为我正在使用laravel分页   2.点击选择所有我正在使用sweetalert确认,在该用户点击我要选择全部,如果用户点击则无需担心   它已经为我工作了。

enter image description here

 function checkallusers(){
      swal({
        title: 'Are you sure you want to make changes for entire Candidate?',
        text: "",
        type: "warning",
        showCancelButton: true,
        confirmButtonClass: "btn-danger",
        confirmButtonText: "OK",
        closeOnConfirm: false,
        showLoaderOnConfirm: true
      },
      function(isConfirm){
             if (isConfirm) {
                    //I want to select all the checkbox
                alert('yes');
                setTimeout(function(){swal("Success", "", "success"); },100);
             }else{
                //Nothing to worry else part working fine
                var checkboxCount = $(".bulkclass").length ;
                var checkedCount = $(".bulkclass").prop('checked', true).length ;
                 if(checkedCount < checkboxCount ){
                   $("#mainselect"). prop("checked",false);
                 }
                 if($("#mainselect"). prop("checked") == true){
                    $(".bulkclass").prop('checked', true);
                 }else{
                    $(".bulkclass").prop('checked', false);
                 }
             }
      });
    }

1 个答案:

答案 0 :(得分:0)

您可以使用属性选择器:

$("input[type=checkbox]")