HTML 日期格式转换

代码如下:

var d = new Date(); 
alert(d); // 输出:Mon Nov 04 2013 21:50:33 GMT+0800 (中国标准时间) 
alert(d.toDateString()); // 输出:Mon Nov 04 2013 
alert(d.toGMTString()); // 输出:Mon, 04 Nov 2013 14:03:05 GMT 
alert(d.toISOString()); // 输出:2013-11-04T14:03:05.420Z 
alert(d.toJSON()); // 输出:2013-11-04T14:03:05.420Z 
alert(d.toLocaleDateString()); // 输出:2013年11月4日 
alert(d.toLocaleString()); // 输出:2013年11月4日 下午10:03:05 
alert(d.toLocaleTimeString()); //输出:下午10:03:05 
alert(d.toString()); // 输出:Mon Nov 04 2013 22:03:05 GMT+0800 (中国标准时间) 
alert(d.toTimeString()); // 输出:22:03:05 GMT+0800 (中国标准时间) 
alert(d.toUTCString()); // 输出:Mon, 04 Nov 2013 14:03:05 GMT 

如果上面的方法不能满足我们的要求,也可以自定义函数来格式化时间,如:
代码如下:

Date.prototype.format = function(format) { 
       var date = { 
              "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+)/i.test(format)) { 
              format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length)); 
       } 
       for (var k in date) { 
              if (new RegExp("(" + k + ")").test(format)) { 
                     format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? date[k] : ("00" + date[k]).substr(("" + date[k]).length)); 
              } 
       } 
       return format; 
} 
var d = new Date().format('yyyy-MM-dd'); 
alert(d); // 2021-04-29

你可能感兴趣的:(html,html)