码迷,mamicode.com
首页 > Web开发 > 详细

js日期转换

时间:2020-07-09 12:19:08      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:function   ons   div   substr   mon   bsp   ice   locale   转换   

1. 转换为:2020-7-9

var d = new Date()

    function date(date) {
        var nowdate = new Date(date).toLocaleDateString().replace(/\//g, ‘-‘)
        return nowdate
    }
    console.log(date(d));

2. 转换为2020/7/9

var d = new Date()

    function date(date) {
        var nowdate = new Date(date).toLocaleDateString()
        return nowdate
    }
    console.log(date(d));

3. 转换为2020-07-09 11:30:23

var d = new Date()

    function date(now) {
        // var now = new Date(),
        y = now.getFullYear(),
            m = ("0" + (now.getMonth() + 1)).slice(-2),
            d = ("0" + now.getDate()).slice(-2);
        return y + "-" + m + "-" + d + " " + now.toTimeString().substr(0, 8);
    }
    console.log(date(d));

 

js日期转换

标签:function   ons   div   substr   mon   bsp   ice   locale   转换   

原文地址:https://www.cnblogs.com/linliu/p/13272695.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!