手机
当前位置:查字典教程网 >编程开发 >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格式化时间戳示例】相关文章:

JavaScript实现自动变换表格边框颜色

根据内容自动调整弹出窗口大小的JS解决方案

JS实现动态生成表格并提交表格数据向后端

javascript瀑布流式图片懒加载实例

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

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

Java语言概述

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

JavaScript正则表达式中的global属性的使用

在JS中操作时间之getUTCMilliseconds()方法的使用

精品推荐
分类导航