checkbox选中(单选多选)

来源:互联网 发布:手机淘宝怎么跟踪物流 编辑:程序博客网 时间:2024/06/16 06:30

  //单选

 $('#OrderItemTbList input[type="checkbox"]').each(function () {

            if ($(this).attr('name') != value)
                $(this).attr("checked", false);
            else {
                if ($(this).prop("checked"))
                    $(this).attr("checked", true);
                else
                    $(this).attr("checked", false);


            }

        });

//多选 

        $('#OrderItemTbList input[type="checkbox"]').each(function () {
            if ($(this).prop("checked"))
                $(this).attr("checked", true);
            else
                $(this).attr("checked", false);
        });
原创粉丝点击