gpt4 book ai didi

javascript - Date js无法添加月份

转载 作者:行者123 更新时间:2023-12-02 15:18:29 25 4
gpt4 key购买 nike

大家好,我使用 Date js 库,但在添加额外月份时遇到问题。

这是我的简单代码:

var durationMonth = $('#periodId').find(':selected').data('id'); // value => 3 m
var startDate = $('#comencingDate').val(); // value -> 2015.12.14
$('#expiringDate').val(Date.parse(startDate + ' + ' + durationMonth).toString("yyyy-MM-dd"));
// This return 2016-03-03, but have to return 2016-03-13

这里是小演示 http://jsfiddle.net/d9rttxta/1/

问题只是几个月,几天和几年都可以。如果您有任何建议,我将非常高兴听到。提前致谢。

预期结果:2016-03-13

实际结果:2016-03-03

最佳答案

将月份添加到日期会将日期-月份重置为该月的第一天。因此,您需要从值中提取日期部分,然后将其附加到月份值。

$('.change').on('click', function() {
var durationMonth = $('#periodId').find(':selected').data('id');
var startDate = $('#comencingDate').val();
$('#expiringDate').val(Date.parse(Date.parse(startDate).toString("dd") + ' + ' + durationMonth).toString("yyyy-MM-dd"));
});

工作示例:http://jsfiddle.net/d9rttxta/3/

更新:为了在未来一年的日期中添加一个月,您可以尝试以下操作:

$('.change').on('click', function() {
var durationMonth = $('#periodId').find(':selected').data('id');
var startDate = $('#comencingDate').val();
var monthDiff = Date.parse(startDate).getMonth() - new Date().getMonth()
+ (12 * (Date.parse(startDate).getFullYear() - new Date().getFullYear()));

var calcDate = Date.parse(Date.parse(startDate).toString("dd") + ' + ' + durationMonth).toString("yyyy-MM-dd");

if(monthDiff > 0)
{
var n_calcDate = new Date(calcDate);
n_calcDate.setMonth(n_calcDate.getMonth() + monthDiff);
n_calcDate.setDate(n_calcDate.getDate() + 1);
calcDate = n_calcDate.toString("yyyy-MM-dd");
}

$('#expiringDate').val(calcDate);
});

工作示例:http://jsfiddle.net/d9rttxta/5/

关于javascript - Date js无法添加月份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34275998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com