我有一些很好的代码,当检查一个复选框时,它会禁用三个字段并为这些字段设置值。
$(document).ready(function () {
$("#checkbox_1").change(function () {
$("#textbox_1").attr("disabled", $(this).attr("checked"));
$("#textbox_2").attr("disabled", $(this).attr("checked"));
$("#textbox_3").attr("disabled", $(this).attr("checked"));
$("#textbox_1").val(1);
$("#textbox_2").val("Classic");
$("#textbox_3").val(1);
});
});
我的问题是,我该如何做才能在未选中该框时将这三个字段的值设置回来?