jQuery checkbox按钮选择
$(function() { $(":checkbox").each(function() { $(this).click(function() { if ($(this).attr("checked")) { $(this).attr("value", "true"); } else { $(this).attr("value", "false"); } }); }); });
$(function() { $(":checkbox").each(function() { $(this).click(function() { if ($(this).attr("checked")) { $(this).attr("value", "true"); } else { $(this).attr("value", "false"); } }); }); });