JavaScript指定日期格式化
程序员文章站
2022-04-12 11:34:35
formatDataToString:function (dates, formats) { var o = { "M+": dates.getMonth() + 1, //月份 "d+": dates.getDate(), //日 "H+": dates.getHours... ......
formatdatatostring:function (dates, formats) {
var o = {
"m+": dates.getmonth() + 1, //月份
"d+": dates.getdate(), //日
"h+": dates.gethours(), //小时
"m+": dates.getminutes(), //分
"s+": dates.getseconds(), //秒
"q+": math.floor((dates.getmonth() + 3) / 3), //季度
"s": dates.getmilliseconds() //毫秒
};
if (/(y+)/.test(formats)) formats = formats.replace(regexp.$1, (dates.getfullyear() + "").substr(4 - regexp.$1.length));
for (var k in o)
if (new regexp("(" + k + ")").test(formats)) formats = formats.replace(regexp.$1, (regexp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
return formats;
}
//调用
formatdatatostring(new date("2019/07/24"),"yyyy-mm-dd")
上一篇: JS 时间显示效果代码
推荐阅读
-
js按指定格式显示日期时间的样式代码_javascript技巧
-
js parseInt("08")未指定进位制问题_javascript技巧
-
javascript实现的简易的DatePicker日历_时间日期
-
请教谁有获取指定日期的前几天的日期方法,多谢
-
mssql sqlserver 获取指定日期为本月第几个工作日
-
JavaScript设置指定时间的毫秒字段的方法setMilliseconds()
-
javascript 当前日期加(天、周、月、年)_时间日期
-
PHP计算指定日期所在周的开始和结束日期的方法_PHP教程
-
PHP获取指定日期所在月的第一天和最后一天几个例子
-
javascript实现输出指定行数正方形图案的方法_javascript技巧