美文网首页
Js日期格式化

Js日期格式化

作者: Mr_Gao_ | 来源:发表于2017-12-11 13:47 被阅读0次
        //自定义日期转换合适
        Date.prototype.toLocaleString = function() {
            //return this.getFullYear() + "-" + (this.getMonth() + 1) + "-" + this.getDate() + " " + this.getHours() + ":" + this.getMinutes() + ":" + this.getSeconds();
            return this.getFullYear() + "-" + (this.getMonth() + 1) + "-" + this.getDate();
        };
    
        var time= new Date(1512696580915);
        time= time.toLocaleString();
        alert(time);
    

    相关文章

      网友评论

          本文标题:Js日期格式化

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