日期格式方法
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工作流
- 一盒用五颜六色的食材烹制的热气腾腾的寿司
- 小鸟在黑暗的天空中优雅地跳舞
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!