我想禁止日历扩展程序中的先前日期。我可以在选择上一个日期时显示弹出窗口,但文本框未清除。
<script type="text/javascript">
function checkDate(sender, args) {
if (sender._selectedDate < new Date()) {
alert("You cannot select a day earlier than today!");
sender._selectedDate = new Date();
sender._textbox.set_Value(sender._selectedDate.format(sender._format))
document.getElementById("txtNextFollowupDate").value = "";//want to make empty
}
}
</script>
<tr>
<td><asp:Label ID="Label18" Text="Next Follow up date" runat="server"></asp:Label></td>
<td>:</td>
<td>
<asp:TextBox runat="server" ID="txtNextFollowupDate" />
<asp:CalendarExtender ID="CalendarNextFollowUpDate" runat="server" TargetControlID="txtNextFollowupDate" OnClientDateSelectionChanged="checkDate" > </asp:CalendarExtender>
</td>
</tr>
答案 0 :(得分:1)
您需要使用以下方式清除文本框值:
document.getElementById("<%=txtNextFollowupDate.ClientID %>").value=" ";