我确实有文本框和两个复选框,我可以在单击按钮时清除其值:
$("#cleartext").live('click', function () {
$(this).parents('form').find('input[type="text"]').val('');
$(".check").attr("checked", false);
});
但我确实有一个文本区域,我在其中使用 html 编辑器,但我无法清除它的值,所以请就此向我提出建议,这些元素的视图如下:
<input type="text" id="title" name="title" required title="required" placeholder="title" data-bind="value:title" />
<input type="checkbox" id="active" name="active" class="check" data-bind="checked: active=='true'" />Active
<input type="checkbox" id="logon" name="logon" class="check" data-bind="checked: use_logo=='true'" />Logo
<textarea id="iiii" name="iiii" class="htmleditor" rows="9" cols="50" style="width: 600px; height: 190px;"></textarea>
<button type="button" class="btn" id="cleartext">New Contract</button>