checkbox

                //单选
                $(":checkbox").click(function () {
                    $(":checkbox.cbprod:checked").each(function () {
                        $(":checkbox").removeAttr("checked");
                    })
                    $(this).attr("checked", true);
                })

你可能感兴趣的:(checkbox)