JS转换Json的Date时间戳

编程入门 行业动态 更新时间:2024-10-26 16:31:19

JS转换Json的Date<a href=https://www.elefans.com/category/jswz/34/1771441.html style=时间戳"/>

JS转换Json的Date时间戳

    //转换Json "/Date(1602691200000)/"类型 Date时间戳function DateFormat(jsondate) {jsondate = jsondate.replace("/Date(", "").replace(")/", "");if (jsondate.indexOf("+") > 0) {jsondate = jsondate.substring(0, jsondate.indexOf("+"));}else if (jsondate.indexOf("-") > 0) {jsondate = jsondate.substring(0, jsondate.indexOf("-"));}var date = new Date(parseInt(jsondate, 10));var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();return date.getFullYear()+ "年"+ month+ "月"+ currentDate+ "日";+ " "//不需要日期后边的时间可删除+ date.getHours()+ ":"+ date.getMinutes();}

更多推荐

JS转换Json的Date时间戳

本文发布于:2023-07-28 21:53:17,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1329839.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:时间   JS   Json   Date

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!