在ASP文件我有兩個ASP:文本框ASP:文本框只讀
<asp:TextBox ID="textValue" runat="server" Width="100px"/>
<asp:TextBox ID="textValue2" runat="server" Width="100px" ReadOnly="true"/>
然後我將通過JavaScript獲得
<asp:TextBox ID="textValue" runat="server" Width="100px" value="aaa"/>
<asp:TextBox ID="textValue2" runat="server" Width="100px" ReadOnly="true" value="bbb"/>
值,但刷新網頁時終於得到
<asp:TextBox ID="textValue" runat="server" Width="100px" value="aaa"/>
<asp:TextBox ID="textValue2" runat="server" Width="100px" ReadOnly="true"/>
爲什麼值bbb是「丟失」?我怎樣才能避免這種情況?
如何設置值爲只讀文本框 – 2011-05-03 13:30:30
使用JavaScript。一個典型的例子是日曆+輸入文本。 – 2011-05-03 13:49:34