页面中有两个日期选择器,但是一个工作正常,但是第二个日期选择器没有从日期选择器中选择日期。
<script type="text/javascript">
$(function () {
$("#<%=TextboxACDate.ClientID%>").datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'yy-mm-dd'
});
});
$(function () {
$("#<%=TextboxExpiryBCDate.ClientID%>").datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'yy-mm-dd'
});
});
</script>
<asp:TextBox ID="TextboxACDate" ReadOnly="true" CssClass="green" Width="656" runat="server"></asp:TextBox><br>
<asp:TextBox ID="TextboxExpiryBCDate" ReadOnly="true" CssClass="green" Width="656" runat="server"></asp:TextBox>