当设置为 read only = true 或 Enabled = false 时,我需要清除/重置文本框值。我在我的代码中使用了重置功能,但这不起作用。我的代码为
function resetForm($form) {
$form.find('input:text, input:password, input:file, select').val('');
$("input[type='hidden']", this).each(function () {
this.value = '';
});
$form.find('input:checkbox')
.removeAttr('checked').removeAttr('selected');
}
<asp:TextBox ID="txteventid" runat="server" ReadOnly="true"/>
有什么建议么 ..