1
當它設置爲只讀= true或Enabled = false時,我需要清除/重置文本框值。我在我的代碼中使用了重置功能,但這不起作用。 我作爲使用jquery清除表單中已啓用的文本框
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"/>
任何建議代碼..
不,它不工作,你能告訴this.prop('只讀')指定文本框? – kk1076 2012-07-12 10:50:58
嘿@ kk1076你可以彈出一個演示; (**)或**爲這個'alert($('#txteventid')。prop('ReadOnly'))發出一個提示信息;'知道你會得到什麼作爲回報,我們會整理出來,不用擔心 – 2012-07-12 10:53:11
好。如上所述,警報顯示爲未定義。我嘗試瞭如果$('MainContent_uscEventParameters_txteventid')。prop('ReadOnly')){document.getElementById(「'MainContent_uscEventParameters_txtevent」)。value =「」; }但它沒有清除價值。 – kk1076 2012-07-12 11:16:38