复选框变单选

来源:互联网 发布:洛阳市博物馆 知乎 编辑:程序博客网 时间:2024/06/06 07:41

    });

};

/**
 * 复选变单选
 */
function checkBoxToRadio(cb) {
    $(":checkbox[name=" + cb + "]").each(function() {
        $(this).click(function() {
            if ($(this).attr("checked")) {
                $(":checkbox[name=" + cb + "]").removeAttr("checked");
                $(this).attr("checked", "checked");
            }
        });
    });
};

0 0