我在一個asp.net頁面中使用javascript,我也使用html textarea從用戶獲取文本。javascript不存儲在asp中的文本框中的值
我想存儲在下面的asp:TextBox
文本和設置文本框「假」的知名度.. 的問題出現了,因爲我使用隱藏文本框來存儲的價值,我的javascript不工作,並作爲我將可見性設置爲「true」,它再次開始工作。但我不想顯示文本框.. 我包括在該文本框爲:
<asp:TextBox ID="txtboxhead" runat="server" Visible="false"></asp:TextBox>
和使用JavaScript爲:
document.getElementById('txtareahead').readOnly = true;
text = document.getElementById('txtareahead').value;
document.getElementById('<%= txtboxhead.ClientID %>').value = text;
這個問題怎麼可以解決.. 請幫助我out ..