我试图在选择另一个时选中一个复选框。这就是我想出的:
<script>
$(document).ready(function(){
var chk1 = $("input[type='checkbox'][name='notify']");
var chk2 = $("input[type='checkbox'][name='notify_comments']");
chk1.on('change', function() {
chk2.prop('checked', this.checked);
}
});
</script>
<input type="checkbox" name="notify">
<input type="checkbox" name="notify_comments">