4

我有一个带有 aTextBox和 a的页面,CalendarExtender应该可以让我检测选择的日期。但是,这是报告未选择的日期。

<asp:TextBox ID="tbEffectiveDate" runat="server"
    CssClass="input-small"
    MaxLength="10"
    Text='<%# Bind("NewEffectiveDate", "{0:MM/dd/yyyy}") %>'>
</asp:TextBox>
<ajaxToolkit:CalendarExtender ID="atkEffectiveDate" runat="server"
    FirstDayOfWeek="Sunday"
    TargetControlID="tbEffectiveDate"
    Format="MM/dd/yyyy"
    OnClientDateSelectionChanged="CheckForSunday">
</ajaxToolkit:CalendarExtender>

本质上,我确保用户选择了星期天,但是当我在日历上选择一天时,JavaScript 说它是前一天。我很困惑。

function CheckForSunday(sender, args) {
    var selectedDate = new Date();
    selectedDate = sender.get_selectedDate();
    // Both of these show the date before the date was selected
    alert(sender.get_selectedDate());

    if (selectedDate.getDay() != 0) {
        // not a Sunday
        var sunday = selectedDate;
        // calculated the nearest Sunday
        sunday.setDate(selectedDate.getDate() - selectedDate.getDay());
        sender.set_selectedDate(sunday);
        // tell the user that the date wasn't a Sunday
        // and that the previous Sunday was selected.
        $("#must-be-sunday").modal("show");
    }
}

例如,如果我选择一个星期日,比如 5 月 5 日:

在此处输入图像描述

然后在该行alert(sender.get_selectedDate());显示

在此处输入图像描述

这就是说选择 5 月 4 日星期六而不是 5 月 5 日。因为在我的语言环境中,我们是 -0700,并且显示在 5 日午夜前 7 小时,我猜这与时区有关。

有谁知道这可能是什么原因以及如何解决它,所以它不适用于时间和仅选择的日期?

4

2 回答 2

4

像往常一样,在将所有内容写成一个问题后,我已经解决了我的问题。这确实是由于时区,但仍然很尴尬。如果有人有更好的解决方案,我很想听听。

使用getTimezoneOffset()如何将 30 分钟添加到 JavaScript 日期对象中的解决方案?,我创建了一个计算来解决这个问题。

var selectedDate = sender.get_selectedDate();
// get the timezone offset in minutes
var timeOffsetMinutes = selectedDate.getTimezoneOffset();
// Convert minutes into milliseconds and create a new date based on the minutes.
var correctedDate = new Date(selectedDate.getTime() + timeOffsetMinutes * 60000);

这纠正了我的问题,我得到了所需的日期。

于 2013-05-08T17:09:22.493 回答
2

您认为由于时区导致的问题是正确的,因为 CalendarExtender 对每一天的单元格值使用 UTC 日期。如果你想检查选择的星期几,你可以使用Date.getUTCDay()函数而不是Date.getDay()getUTCDate()而不是getDate()OnClientDateSelectionChanged处理程序中。

于 2013-05-11T07:42:30.043 回答