你这个方法有点不对低效,给你写个新的方法吧,随便加减天数
//获取时间方法Date.prototype.Format = function (fmt) {
var o = {
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
"h+": this.getHours(), //小时
"m+": this.getMinutes(), //分
"s+": this.getSeconds(), //秒
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
"S": this.getMilliseconds() //毫秒
}
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length))
for (var k in o)
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)))
return fmt
}
//获取当前日期
var starTime= new Date().Format("yyyy-MM-dd")//Format("输入你想要的时间格式:yyyy-MM-dd,yyyyMMdd")
//结束时间
var date = new Date()//获取当前时间
date.setDate(date.getDate()+15)//设置天数 15 天
var endTime = date.Format("yyyy-MM-dd") //加完15天以后的时间
然后你就获取 开始时间starTime和结束时间endTime了 ,结束时间可以随便改了....
然后写入你的DIV里就ok了
$('starDate').value=starTime
$('endData').value=endTime
不需要写那么多 if啊 加0啊 之类的。
下面的例子程序能看懂吧:<Script type=text/javascript>
var d=new Date()
d.setTime(d.getTime()-30*24*3600*1000)
document.write(d)
</script>
getTime获取时间的毫秒值,setTime是设置毫秒,减去30天*24小时*3600秒*1000毫秒就是30天以前的时间。
先说下逻辑:
获得当前的时间戳,和目标时间戳
比对两者的差距
定义展示数据,比如:30分钟前展示“x分钟前“,半小时到1小时展示“半小时前”,1小时到一天展示“x小时前”,一天以后展示“x天前”
根据差距,比对符合的展示数据。
<script type="text/javascript">function formatStr( ){
var str = arguments[0]
var arr = [].splice.call(arguments,1,arguments.length -1)
return str.replace(/\{(\d+)\}/g,function(s,i){
if(arr[i]!='0'){
return arr[i] || ''
}else{
return arr[i]
}
})
}
function show( date ){
//date 是 js的日期对象
var now = +new Date()
var target = date.getTime()
var diff = now - target//差距
var showArr = [
{
txt : '{0}分钟前',
times : 60 * 1000,
num : 30 * 60 * 1000
},
{
txt : '半小时前',
times : 60 * 1000,
num : 60 * 60 * 1000
},
{
txt : '{0}小时前',
times : 60 * 60 * 1000,
num : 24 * 60 * 60 * 1000
}
]
var txt = '{0}天前',num = 0,times = 24 * 60 * 60 * 1000
for(var i=0i<showArr.lengthi++){
var item = showArr[i]
if( diff < item.num){
txt = item.txt
times = item.times
break
}
}
var show = Math.floor(diff / times)
txt = formatStr(txt,show)
return txt
}
var targetDate = new Date('2018-03-10')
console.log(show(targetDate))
</script>