1

如果是周末,我已经完成了一个更改日期的功能,但是它没有给我第二天它对我的第 + 1 天,例如,我输入了 31-09-2012,这是最后一个星期日。

我有我的功能

<script type="text/javascript">
    function getdate2() {
        var items = new Array();
        var itemCount = document.getElementsByClassName("datepicker hasDatepicker");

        for (var i = 0; i < itemCount.length; i++) {
            items[i] = document.getElementById("date" + (i + 1)).value;
        }



        for (var i = 0; i < itemCount.length; i++) {
            items[i] = document.getElementById("date" + (i + 1)).value;
            var itemDtParts = items[i].split("-");
            var itemDt = new Date(itemDtParts[2], itemDtParts[1] - 1, itemDtParts[0]);
                    if (itemDt.getDay() == 6) {

                itemCount[i].value = (itemDt.getDate() < 9 ? "0" : "")+ (itemDt.getDate()+2)+ "-" + (itemDt.getMonth() < 9 ? "0" : "") + (itemDt.getMonth() + 1) + "-" + itemDt.getFullYear();


            }
                        if (itemDt.getDay() == 0) {

               itemCount[i].value = (itemDt.getDate() < 9 ? "0" : "")+ (itemDt.getDate()+1)+ "-" + (itemDt.getMonth() < 9 ? "0" : "") + (itemDt.getMonth() + 1) + "-" + itemDt.getFullYear();


            }

        }
       return items;
       }
</script>

但是它没有给我第一个 10 月,而是给了我不存在的 31-09-2012。

真不知道怎么处理。

4

3 回答 3

1

您需要将每月的最大天数存储在数组中。

var dayspermonth = new array(31,28,31,30,31,30,31,31,30,31,30,31);

最好在单独的函数中执行此操作:

function int lastDay(d, m){
    var result = d
    var dayspermonth = new array(31,28,31,30,31,30,31,31,30,31,30,31);
    if(d > dayspermonth[m]){
        d=1;
    }
    return d;
}

然后你只需要做(例如):

itemCount[i].value = (itemDt.getDate() < 9 ? "0" : "")+ lastDay((itemDt.getDate()+1), itemDt.getMonth())+ "-" + (itemDt.getMonth() < 9 ? "0" : "") + (itemDt.getMonth() + 1) + "-" + itemDt.getFullYear();

编辑: 如果发生这种情况,您需要将月份增加 1。如果旧日期是 31-12-YYYY,您需要将 1 添加到年份并将月份设置为 1

于 2012-10-01T13:13:41.273 回答
1

试试date.js轻松找到周末

Date.today().is().weekday() // Is today a weekday?

于 2012-10-01T13:17:11.803 回答
0

2012/07/25 - 星期六。代码检查是否是星期六 - 添加 2 天,如果是星期日 - 添加 1 天 http://jsfiddle.net/S3Q4P/

var mydate=new Date(2012,07,25)
if(mydate.getDay() == 6) //Saturday
mydate =new Date(mydate.getFullYear(),mydate.getMonth(),mydate.getDate()+2)
else if (mydate.getDay() == 0) //Sunday
     mydate =new Date(mydate.getFullYear(),mydate.getMonth(),mydate.getDate()+1)
于 2012-10-01T13:16:12.030 回答