没有合适的资源?快使用搜索试试~ 我知道了~
代码如下:/** * 时间对象的格式化; */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+
资源推荐
资源详情
资源评论
js格式化时间和格式化时间和js格式化时间戳示例格式化时间戳示例
代码如下:
/**
* 时间对象的格式化;
*/
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”);
资源评论
weixin_38504089
- 粉丝: 6
- 资源: 947
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 章节1:Python入门视频
- 无需样板的 Python 类.zip
- ESP32 : 32-bit MCU & 2.4 GHz Wi-Fi & BT/BLE SoCs
- 博物馆文博资源库-JAVA-基于springBoot博物馆文博资源库系统设计与实现
- 旅游网站-JAVA-springboot+vue的桂林旅游网站系统设计与实现
- 小说网站-JAVA-基于springBoot“西贝”小说网站的设计与实现
- 游戏分享网站-JAVA-基于springBoot“腾达”游戏分享网站的设计与实现
- 学习交流-JAVA-基于springBoot“非学勿扰”学习交流平台设计与实现
- EDAfloorplanning
- 所有课程均提供 Python 复习部分.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功