码迷,mamicode.com
首页 > 其他好文 > 详细

全选全否功能

时间:2016-07-01 14:45:44      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

html页面部分:
<th><input type="checkbox" class="selectAll" name="selectAll" id="selectAll"/></th> 
<td class="text-center">#application#</td
 
JavaScript部分:
//全选   取消全选
    $(document).ready(function() {
    $("#selectAll").unbind().on("ifClicked",function(){    //点击事件未选中
     if( $(this).prop("checked") ){// 
        $(‘input[name=danxuan]‘).iCheck(‘uncheck‘);
     }else{
        $(‘input[name=danxuan]‘).iCheck(‘check‘);  //
     }
    });
    }); 
 

sql文件部分:

‘<input type="checkbox" class="duoxuan" name="danxuan" value="‘||r.vc_code||‘">‘ as application, 

全选全否功能

标签:

原文地址:http://www.cnblogs.com/prefect/p/5632973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!