1
我仍然沒有明白爲什麼我無法從文本框中獲取文本。如何使用dynDateTime從文本框中獲取文本
我需要dynDateTime來獲取文本框的日期,但是當我選擇日期和日期顯示在文本框中後,我無法從文本框中獲取文本。
<script type="text/javascript">
$(document).ready(function() {
$("#<%=TextBox1.ClientID %>").dynDateTime({
showsTime: false,
ifFormat: "%Y/%m/%d",
daFormat: "%l;%M %p, %e %m, %Y",
align: "BR",
electric: false,
singleClick: false,
displayArea: ".siblings('.dtcDisplayArea')",
button: ".next()"
});
});
</script>
<asp:TextBox ID="TextBox1" runat="server" ReadOnly = "true" Width="100px"></asp:TextBox><img src="../../images/calendar_icon.png" />
我錯過了什麼?
在此先感謝。