生成“年-月-日”形式的日期字符串
Posted ZhangCui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成“年-月-日”形式的日期字符串相关的知识,希望对你有一定的参考价值。
function showDate(time){ var date_obj = new Date(time), year, month, date; year = date_obj.getFullYear(); month = String(date_obj.getMonth() + 1).length === 2 ? (date_obj.getMonth() + 1) : "0" + (date_obj.getMonth() + 1); date = String(date_obj.getDate()).length === 2 ? (date_obj.getDate()) : "0" + date_obj.getDate(); return (year+"/"+month+"/"+date); }
1、今日:
showDate(Date.now())
2、本月1号:
showDate(Date.now()).replace(/\\d{2}$/,"01")
3、一周前:
showDate(Date.now() - 7*24*3600*1000)
以上是关于生成“年-月-日”形式的日期字符串的主要内容,如果未能解决你的问题,请参考以下文章