真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

小程序如何獲取系統(tǒng)時間、時間戳時間以及時間戳加減

這篇文章將為大家詳細講解有關(guān)小程序如何獲取系統(tǒng)時間、時間戳時間以及時間戳加減,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

10余年的即墨網(wǎng)站建設經(jīng)驗,針對設計、前端、開發(fā)、售后、文案、推廣等六對一服務,響應快,48小時及時工作處理。成都全網(wǎng)營銷的優(yōu)勢是能夠根據(jù)用戶設備顯示端的尺寸不同,自動調(diào)整即墨建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)從事“即墨網(wǎng)站設計”,“即墨網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。

//獲取當前時間戳
    var timestamp = Date.parse(new Date());
    timestamp = timestamp / 1000;
    console.log("當前時間戳為:" + timestamp);
 
//獲取當前時間
    var n = timestamp * 1000;
    var date = new Date(n);
    //年
    var Y = date.getFullYear();
    //月
    var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1);
    //日
    var D = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
    //時
    var h = date.getHours();
    //分
    var m = date.getMinutes();
    //秒
    var s = date.getSeconds();
  
    console.log("當前時間:" +Y+M+D+h+":"+m+":"+s);
    
//轉(zhuǎn)換為時間格式字符串
    console.log(date.toDateString());
 
    console.log(date.toGMTString());
 
    console.log(date.toISOString());
  
    console.log(date.toJSON());
    
    console.log(date.toLocaleDateString());
 
    console.log(date.toLocaleString());
  
    console.log(date.toLocaleTimeString());
   
    console.log(date.toString());
   
    console.log(date.toTimeString());
   
    console.log(date.toUTCString());
//時間、時間戳加減 以加一天舉例,聰明的你肯定觸類旁通
    //加一天的時間戳:
    var tomorrow_timetamp = timestamp + 24 * 60 * 60;
    //加一天的時間:
    var n_to = tomorrow_timetamp * 1000;
    var tomorrow_date = new Date(n_to);
    //加一天后的年份
    var Y_tomorrow = tomorrow_date.getFullYear();
    //加一天后的月份
    var M_tomorrow = (tomorrow_date.getMonth() + 1 < 10 ? '0' + (tomorrow_date.getMonth() + 1) : tomorrow_date.getMonth() + 1);
    //加一天后的日期
    var D_tomorrow = tomorrow_date.getDate() < 10 ? '0' + tomorrow_date.getDate() : tomorrow_date.getDate();
    //加一天后的時刻
    var h_tomorrow = tomorrow_date.getHours();
    //加一天后的分鐘
    var m_tomorrow = tomorrow_date.getMinutes();
    //加一天后的秒數(shù)
    var s_tomorrow = tomorrow_date.getSeconds();

關(guān)于“小程序如何獲取系統(tǒng)時間、時間戳時間以及時間戳加減”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


網(wǎng)頁題目:小程序如何獲取系統(tǒng)時間、時間戳時間以及時間戳加減
標題URL:http://weahome.cn/article/jddchs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部