Date.prototype.Format = function (fmt) { //author: meizz var o = {"M+": Month() + 1, //月份 "d+": Date(), //日 "h+": Hours(), //小时 "m+": Minutes(), //分 "s+": Seconds(), //秒 "q+": Math.floor((Month() + 3) / 3), //季度 "S": Milliseconds() //毫秒 };if (/(y+)/.test(fmt)) fmt = place(RegExp.$1, (FullYear() + "").substr(4 - RegExp.$1.length));for (var k in o)if (new RegExp("(" + k + ")").test(fmt)) fmt = place(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));return fmt;
}
var filename = new Date().Format("yyyy-MM-dd")$(".dateStartInfo ").text(filename)
本文发布于:2024-01-30 18:30:25,感谢您对本站的认可!
本文链接:https://www.4u4v.net/it/170661062921981.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |