您好,登錄后才能下訂單哦!
這篇文章主要介紹了js中new Date()怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
js new Date() 測試
var t = new Date().toString(); //t = "Thu Oct 31 2019 11:36:57 GMT+0800 (中國標準時間)" var t1 = new Date(); var data_arry =[]; var that = new Date(); data_arry.push(that.constructor()); // Thu Oct 31 2019 11:50:26 GMT+0800 (中國標準時間)" data_arry.push(that.getDate()); //31 data_arry.push(that.getDay()); // 4 data_arry.push(that.getFullYear()); //2019 data_arry.push(that.getHours()); // 11 data_arry.push(that.getMilliseconds()); // 401 data_arry.push(that.getMinutes()); // 50 data_arry.push(that.getMonth()); //9 data_arry.push(that.getSeconds()); //26 data_arry.push(that.getTime()); //1572493826401 data_arry.push(that.getTimezoneOffset()); //-480 data_arry.push(that.getUTCDate()); //31 data_arry.push(that.getUTCDay()); data_arry.push(that.getUTCFullYear()); data_arry.push(that.getUTCHours()); data_arry.push(that.getUTCMilliseconds()); data_arry.push(that.getUTCMinutes()); data_arry.push(that.getUTCMonth()); data_arry.push(that.getUTCSeconds()); data_arry.push(that.getYear()); data_arry.push(that.setDate()); data_arry.push(that.setFullYear()); data_arry.push(that.setHours()); data_arry.push(that.setMilliseconds()); data_arry.push(that.setMinutes()); data_arry.push(that.setMonth()); data_arry.push(that.setSeconds()); data_arry.push(that.setTime()); data_arry.push(that.setUTCDate()); data_arry.push(that.setUTCFullYear()); data_arry.push(that.setUTCHours()); data_arry.push(that.setUTCMilliseconds()); data_arry.push(that.setUTCMinutes()); data_arry.push(that.setUTCMonth()); data_arry.push(that.setUTCSeconds()); data_arry.push(that.setYear()); data_arry.push(that.toDateString()); data_arry.push(that.toGMTString()); //data_arry.push(that.toISOString()); 報錯 data_arry.push(that.toJSON()); data_arry.push(that.toLocaleDateString()); data_arry.push(that.toLocaleString()); data_arry.push(that.toLocaleTimeString()); data_arry.push(that.toString()); data_arry.push(that.toTimeString()); data_arry.push(that.toUTCString()); data_arry.push(that.valueOf());
函數
function get_nowtime() { var date = new Date(); return (date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate()); } console.log(get_nowtime());
擴展閱讀:
JS獲取當前時間戳的方法-JavaScript 獲取當前時間戳
JavaScript 獲取當前時間戳:
第一種方法:
var timestamp =Date.parse(new Date());
結果:1280977330000
第二種方法:
var timestamp =(new Date()).valueOf();
結果:1280977330748
第三種方法:
var timestamp=new Date().getTime();
結果:1280977330748
第一種:獲取的時間戳是把毫秒改成000顯示,
第二種和第三種是獲取了當前毫秒的時間戳。
我和同事在用js實現一個顯示出分析數據所剩大概時間的過程中,時間總是變給0,結果很怪異,最后發現獲取時間的時候用的是Date.parse(newDate())獲取的時間戳把毫秒改成了000顯示,所以時間差計算的不準確。
可以用第二種或第三種方法計算時間差。
js中單獨調用new Date(),例如document.write(new Date());
顯示的結果是:Mar 31 10:10:43 UTC+0800 2012 這種格式的時間
但是用new Date() 參與計算會自動轉換為從1970.1.1開始的毫秒數
感謝你能夠認真閱讀完這篇文章,希望小編分享的“js中new Date()怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。