码迷,mamicode.com
首页 > Web开发 > 详细

js 获取checkbox选中项目

时间:2016-01-10 15:33:16      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

#

//获取选中项
$(‘#submit‘).click(function () {
    var check_list = []
    $("input[name=‘ck‘]:checked").each(function () {
        check_list.push(this.value);
    });
    alert(check_list.join(","));
});

//全选/取消全选
$(‘#all‘).toggle(function () {
    $("input[name=‘ck‘]").attr("checked", ‘true‘);
}, function () {
    $("input[name=‘ck‘]").removeAttr("checked");
});


//反选
$(‘#unselected‘).click(function () {
    $("input[name=‘ck‘]").each(function () {
        if ($(this).attr("checked")) {
            $(this).removeAttr("checked");
        } else {
            $(this).attr("checked", ‘true‘);
        }
    });
});

#

js 获取checkbox选中项目

标签:

原文地址:http://www.cnblogs.com/weiok/p/5118482.html

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