我需要清除/重置设置为 ReadOnly="true" 的 textbox1。我在另一个 Textbox2 中使用了 textchanged 事件来计算 Textbox1 的值。重置时不会清除 Textbox2 中的值。有什么建议吗??..我的重置代码
function resetForm($form) {
$form.find('input:text, input:password, input:file, select').val('');
$form.find('input:checkbox')
.removeAttr('checked').removeAttr('selected');
}
我的 aspx 代码
<asp:TextBox ID="TextBox2" runat="server" ReadOnly="true" />
<asp:TextBox ID="Textbox1" runat="server" OnTextChanged="Textbox1_TextChanged" AutoPostBack="true"></asp:TextBox>