先來一個土方法:
<script>function getyyyyMMdd(){
var d = new Date();
var curr_date = d.getDate();
var curr_month = d.getMonth() + 1;
var curr_year = d.getFullYear();
String(curr_month).length < 2 ? (curr_month = "0" + curr_month): curr_month;
String(curr_date).length < 2 ? (curr_date = "0" + curr_date): curr_date;
var yyyyMMdd = curr_year + "" + curr_month +""+ curr_date;
return yyyyMMdd;
}
</script>
其中,唯一的注意點就是獲取年份時不要寫成d.getYear()這樣你獲取過來的就是114這個值,這里解釋一下,為什么是114?
因為今年是2014年而使用getYear()你獲取的是2014-1900這個數值。看到1900我想你應該懂了(默認系統時間)。
第二種方法,通過使用prototype擴展Date的format方法,實現日期格式化:
<script>
var xx = getyyyyMMdd();
/**
* 日期格式化(原型擴展或重載)
* 格式 YYYY/yyyy/ 表示年份
* MM/M 月份
* dd/DD/d/D 日期
* @param {formatStr} 格式模版
* @type string
* @returns 日期字符串
*/
Date.prototype.format = function(formatStr){
var str = formatStr;
var Week = ['日','一','二','三','四','五','六'];
str=str.replace(/yyyy|YYYY/,this.getFullYear());
str=str.replace(/MM/,(this.getMonth()+1)>9?(this.getMonth()+1).toString():'0' + (this.getMonth()+1));
str=str.replace(/dd|DD/,this.getDate()>9?this.getDate().toString():'0' + this.getDate());
return str;
}
alert(new Date().format("yyyy-MM-dd"));
</script>
像今天2014-07-28那么其也將輸去2014-07-28。
轉自:https://www.cnblogs.com/Richard-xie/p/3872480.html
JavaScript日期加減
JS中的日期加減使用以下方式:
varcurrentDate = new Date();
對日期加減:
date.setDate(date.getDate()+n);
對月加減:
date.setMonth(date.getMonth()+n);
對年加減:
date.setFullYear(date.getFullYear()+n);
對小時、周等,都可以使用類似的方式修改。
同時如果對日加減的時候跨越了月、年,那么JS的date類型會自動的處理跨越問題,不需要我們處理。
需要注意的是返回的月份是從0開始計算的,也就是說返回的月份要比實際月份少一個月,因此要相應的加上1
var myDate = new Date();//當前日期
var d = new Date(myDate);
d.setDate(d.getDate() + 1)//當前日期加1天

