jQuery checkbox 单选

靳祺然
2023-12-01

HTML代码:

<input name='is_show' type='checkbox' value="0" checked /> 显示
<input name='is_show' type='checkbox' value="1" /> 隐藏

JQuery代码:

// checkbox 点击事件
$("input[name='is_show']").click(function() {
    $("input[name='is_show']").prop("checked", false);
    $(this).prop('checked', true);
});

// 获取is_push的值
var is_push = $("input[name='is_show']:checked").val();
 类似资料: