gpt4 book ai didi

jquery - 使用 Angular 和 jQuery datepicker 计算天数差异

转载 作者:行者123 更新时间:2023-11-30 23:51:04 25 4
gpt4 key购买 nike

在 Angular 中,我尝试使用 jQuery datepicker 计算两个选定日期之间的天数。它仅返回 null 与我正在使用的函数..

但是我不太确定它是函数还是在 Angular 中使用日期选择器..看起来问题是函数,但当我将它与 jQuery 一起使用时它可以工作..

我的功能:

$scope.dayDiff = function(firstDate,secondDate){

$scope.dayDifference = parseInt(Math.round((secondDate - firstDate) / (1000 * 60 * 60 * 24)));;
}

其余:http://jsfiddle.net/1mzgLywe/5/

提前致谢!

最佳答案

这是工作 fiddle ,请检查,link to fiddle

创建一个函数,将日期字符串传递给 new Date()

$scope.formatString = function(format) {
var day = parseInt(format.substring(0,2));
var month = parseInt(format.substring(3,5));
var year = parseInt(format.substring(6,10));
var date = new Date(year, month-1, day);
return date;
}

修改dayDiff函数如下,

$scope.dayDiff = function(firstDate,secondDate){
var date2 = new Date($scope.formatString(secondDate));
var date1 = new Date($scope.formatString(firstDate));
var timeDiff = Math.abs(date2.getTime() - date1.getTime());
var diffDays = Math.ceil(timeDiff / (1000 * 3600 * 24));
alert(diffDays);
}

关于jquery - 使用 Angular 和 jQuery datepicker 计算天数差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26649194/

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