先來一個土方法:
<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。