Date.prototype.Format = function (fmt) { //author: meizz
var o = {
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
"h+": this.getHours(), //小时
...
分类:
Web程序 时间:
2014-08-14 10:54:18
阅读次数:
233
先来一个土方法:其中,唯一的注意点就是获取年份时不要写成d.getYear()这样你获取过来的就是114这个值,这里解释一下,为什么是114?因为今年是2014年而使用getYear()你获取的是2014-1900这个数值。看到1900我想你应该懂了(默认系统时间)。第二种方法,通过使用protot...
分类:
Web程序 时间:
2014-07-28 14:29:13
阅读次数:
300