javascript js 如何计算两个时间的差,比如说我有一个这样的功能,点击上一月月份+1 点击下一个月-1
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript js 如何计算两个时间的差,比如说我有一个这样的功能,点击上一月月份+1 点击下一个月-1相关的知识,希望对你有一定的参考价值。
请用js代码帮我实现,能有帮我解决的我非常感谢。请按照我的说的功能实现。减去月份的时候要判断这个月的天数,还有年。
用jQuery EasyUI的Calendar做了一个DEMO,功能可以实现点击任意年月日,计算出与当天的日期差。<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
<!--
这里添加jquery.js及jquery.easyui.min.js的引用
及相应CSS
-->
</head>
<body>
<h2>Calendar</h2>
<div class="easyui-calendar" style="width:180px;height:180px;">
</div>
</body>
</html>
<script>
$(".easyui-calendar").calendar(
onSelect: function (date)
var selectdate = new Date(date.format("yyyy/MM/dd")); //取选中的日期
var currentdate = new Date(new Date().format("yyyy/MM/dd")); //取当前日期
alert("距今天:" + parseInt(Math.abs((selectdate - currentdate) / 1000 / 60 / 60 / 24)) + "天"); //计算并显示相差天数
);
//格式化日期时间
Date.prototype.format = function (format)
var o =
"M+": this.getMonth() + 1, //month
"d+": this.getDate(), //day
"h+": this.getHours(), //hour
"m+": this.getMinutes(), //minute
"s+": this.getSeconds(), //second
"q+": Math.floor((this.getMonth() + 3) / 3), //quarter
"S": this.getMilliseconds() //millisecond
if (/(y+)/.test(format)) format = format.replace(RegExp.$1,
(this.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o) if (new RegExp("(" + k + ")").test(format))
format = format.replace(RegExp.$1,
RegExp.$1.length == 1 ? o[k] :
("00" + o[k]).substr(("" + o[k]).length));
return format;
</script> 参考技术A 你的意思,是类似月历的哪种么?
就是 点--> 上一月 原来的月份+1,
点--> 下一月 原来的月份 -1 。
这样么??
判断这个月的天数及年份,是用来做什么的??追问
我要的功能就是
上一月 ---》上一月
下一月 ---》下一月
要是正确的 。
要可以几点多次 别点一次是对的,点了几天几次就不对了
var now=new Date()
document.write(now.getUTCFullYear()+' - '+(Number(now.getUTCMonth())+1)+' - '+now.getUTCDate()+"<br>")
now.setUTCMonth(Number(now.getUTCMonth())-9)
document.write(now.getUTCFullYear()+' - '+(Number(now.getUTCMonth())+1)+' - '+now.getUTCDate())
</script>
2012 - 8 - 1
2011 - 11 - 1追问
朋友,这个不是我要的功能啊
追答怎么不是?
减去月份的时候要判断这个月的天数,还有年。??
根本不用你判断,js内部会自动判断,如果加入7月31日一个月话,他会是7月1日,不是6月31日.或者6月30
如果你要结果是6月30的话,就要手动判断了.
分别获取日期的年月日.当月份减的时候,判断当前月的天数,和结果月的天数,自己做处理.
Oracle中计算两个日期时间的差
--方法1 select floor((sysdate - to_date(‘2006-09-01 08:00:00‘, ‘yyyy-mm-dd hh24:mi:ss‘))) as sDays from dual; --ceil(n) 取大于等于数值n的最小整数; --floor(n)取小于等于数值n的最大整数; select ceil(9.6) from dual; --->10 select floor(9.6) from dual; --->9 --方法2 select ROUND(TO_NUMBER(sysdate - to_date(‘2006-09-01 08:00:00‘, ‘yyyy-mm-dd hh24:mi:ss‘))) as sDays from dual;
以上是关于javascript js 如何计算两个时间的差,比如说我有一个这样的功能,点击上一月月份+1 点击下一个月-1的主要内容,如果未能解决你的问题,请参考以下文章