我正在为日期选择器使用 Bootstrap 插件。它工作正常。我需要两种验证。第一个是必填字段验证,第二个指定日期不接受。有人可以帮忙吗?即使我是 j 查询的初学者。提前感谢您的帮助。
jQuery代码:
$(function () {
window.prettyPrint && prettyPrint();
$('#ContentSection_txtFromDate, #ContentSection_txtToDate').datepicker({
format: 'mm-dd-yyyy'
});
aspx 代码
<div>
<p>
<asp:Label ID="lblEndingTimeStamp" runat="server" Text="<span>*</span> Ending Time Stamp"
AssociatedControlID="ddlEndingTimeStamp"></asp:Label>
<asp:DropDownList ID="ddlEndingTimeStamp" runat="server">
<asp:ListItem Value="0">23:59:59</asp:ListItem>
</asp:DropDownList>
</p>
<p>
<asp:Label ID="lblToDate" runat="server" Text="<span>*</span> To Date" AssociatedControlID="txtToDate"></asp:Label><asp:TextBox
ID="txtToDate" runat="server" value="MM/DD/YYYY" onfocus="if(this.value == 'MM/DD/YYYY')this.value='';"
onblur="if(this.value =='')this.value='MM/DD/YYYY';"></asp:TextBox></p>
</div>