<input name='is_show' type='checkbox' value="0" checked /> 显示
<input name='is_show' type='checkbox' value="1" /> 隐藏
// 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();