js 毫秒转换为标准时间


function dateForm(time){
                var unixTimestamp = new Date( 1477386005*1000 );
                commonTime = unixTimestamp.toLocaleString();
            }
            Date.prototype.toLocaleString = function() {
                return this.getFullYear() + "/" + (this.getMonth() + 1) + "/" + this.getDate() + "/" + this.getHours() + ":" + this.getMinutes() + ":" + this.getSeconds();
            };

  new Data(‘毫秒数’)是标准时间,

  new Data().getTime()是把标准时间转换成毫秒数


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM