比如说我有以下内容:
<input type="checkbox" id="chk-box1" name="chk-box1" value="Check 1">Check 1
<input type="text" id="textbox1" name="textbox1" value="">
当单击“chk-box1”时,我可以设置文本框的值:
$('#chk-box1').change(function(){
var chk = $(this);
$('#textbox1').val("Textbox 1 is checked")('selected', chk.attr('checked'));
})
但是当未选中该框时,如何将文本框的值设置为空?$('#textbox1').val("")