js日期转换

Posted 啦咯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js日期转换相关的知识,希望对你有一定的参考价值。

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日期转换的主要内容,如果未能解决你的问题,请参考以下文章

JS的数据类型判断函数数组对象结构处理日期转换函数,浏览器类型判断函数合集

js常用代码片段(更新中)

js中怎么把日期转换成数字?

vue.js怎样将时间戳转化为日期格式

js日期转换成字符串

js实现的时间戳和时间日期的转换