JQuery Checkbox 获取选中值 Checkbox选中个数【单选】


 //单选
    $(':checkbox[name=ckb-jobids]').each(function () {

        $(this).click(function () {
            //单选
            if ($(this).is(':checked')) {
$(
":checkbox").each(function () {
$(
this).prop('checked', false); })
$(
this).prop("checked", true);
str
= $(this).attr("value"); //被选中的值 } }); });