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"/>
助言がありますか ..