手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >js格式化时间和js格式化时间戳示例
js格式化时间和js格式化时间戳示例
摘要:复制代码代码如下:/***时间对象的格式化;*/Date.prototype.format=function(format){/**eg:f...

复制代码 代码如下:

/**

* 时间对象的格式化;

*/

Date.prototype.format = function(format) {

/*

* eg:format="YYYY-MM-dd hh:mm:ss";

*/

var o = {

"M+" :this.getMonth() + 1, // month

"d+" :this.getDate(), // day

"h+" :this.getHours(), // hour

"m+" :this.getMinutes(), // minute

"s+" :this.getSeconds(), // second

"q+" :Math.floor((this.getMonth() + 3) / 3), // quarter

"S" :this.getMilliseconds()

// millisecond

}

if (/(y+)/.test(format)) {

format = format.replace(RegExp.$1, (this.getFullYear() + "")

.substr(4 - RegExp.$1.length));

}

for ( var k in o) {

if (new RegExp("(" + k + ")").test(format)) {

format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k]

: ("00" + o[k]).substr(("" + o[k]).length));

}

}

return format;

}

复制代码 代码如下:

var now = new Date().format("yyyy-MM-dd hh:mm:ss");

复制代码 代码如下:

new Date().format("yy-MM-dd hh:mm");

【js格式化时间和js格式化时间戳示例】相关文章:

JS获取时间的相关函数及时间戳与时间日期之间的转换

JavaScript模版引擎的基本实现方法浅析

png在IE6 下无法透明的解决方法汇总

js实现发送验证码后的倒计时功能

Node.js重新刷新session过期时间的方法

javascript组合使用构造函数模式和原型模式实例

javascript无刷新评论实现方法

JS对字符串编码的几种方式使用

匹配html标记的正则

JS代码的格式化和压缩

精品推荐
分类导航