日期格式方法
function dateFormat(str){ var oDate = new Date(str), oYear = oDate.getFullYear(), oMonth = oDate.getMonth()+1, oDay = oDate.getDate(), oHour = oDate.getHours(), oMin = oDate.getMinutes(), oSen = oDate.getSeconds() return oYear+ "-" + zero(oMonth, 2) + "-" + zero(oDay, 2)+" "+zero(oHour, 2)+":"+zero(oMin, 2)+ ":"+ zero(oSen, 2); };
补0操作1
function zero(num){ if(parseInt(num) < 10){ num = '0'+num; } return num; }
输出结果:
console.log(dateFormat(1666678311838)) //2022-10-25 14:11:51
wordpress如何把发布的具体时间改成(几分/几小时前)类型
上面是“javasript毫秒转换为成时间(年月日时分秒)”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_2549.html
workflows工作流
一个质朴的木制窗户上放着各种葫芦、南瓜等
一张超现实主义美女照片ComfyUI工作流
树上挂着一只快乐的小樱桃
一把令人难忘的美丽吉他ComfyUI工作流
一个外国人在吹奏萨克斯ComfyUI工作流
一张由表情符号组成的照片ComfyUI工作流
森林里坐着一个外星人ComfyUI工作流
一个穿着发光红色长袍的人
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!