美文网首页
JS获取零点Unix时间戳

JS获取零点Unix时间戳

作者: 清霆 | 来源:发表于2021-08-04 15:50 被阅读0次

    推荐方式

    const parseZeroTime = (d) => {
        if(!d) {
            d = new Date();
        }
        d.setHours(0);
        d.setMinutes(0);
        d.setSeconds(0);
        d.setMilliseconds(0);
        const t = d.getTime() / 1000;
        return t;
    }
    

    不推荐方式(部分用户手机时间格式使用了非标准格式的情况下会出错,比如8月4日识别成了4月8日)

    const parseZeroTime = (d) => {
        if(!d) {
            d = new Date();
        }
        const t = Date.parse(d.toLocaleDateString()) / 1000;
        return t;
    }
    

    相关文章

      网友评论

          本文标题:JS获取零点Unix时间戳

          本文链接:https://www.haomeiwen.com/subject/yzuuvltx.html