JS獲取當前日期並定時重新整理

2022-07-24 08:45:08 字數 1327 閱讀 8420

js獲取當前日期時間

var date = new date();

date.getyear(); //獲取當前年份(2位)

date.getfullyear(); //獲取完整的年份(4位,2014)

date.getmonth(); //獲取當前月份(0-11,0代表1月)

date.getdate(); //獲取當前日(1-31)

date.getday(); //獲取當前星期x(0-6,0代表星期天)

date.gettime(); //獲取當前時間(從1970.1.1開始的毫秒數)

date.gethours(); //獲取當前小時數(0-23)

date.getminutes(); //獲取當前分鐘數(0-59)

date.getseconds(); //獲取當前秒數(0-59)

date.getmilliseconds(); //獲取當前毫秒數(0-999)

date.tolocaledatestring(); //獲取當前日期 如 2023年6月25日

date.tolocaletimestring(); //獲取當前時間 如 下午4:45:06

date.tolocalestring(); //獲取日期與時間 如 2023年6月25日 下午4:45:06

注意:getyear()和getfullyear()都能夠獲取年份,但兩者稍有差別

getyear()在瀏覽器中顯示則為:114 (以2023年為例),原因則是getyear返回的是"當前年份-1900"的值(即年份基數是1900)

使用js來獲取年份都使用:getfullyear()

定時重新整理

定時重新整理則使用setinterval,詳細settimeout與setinterval的差別參考其它資料。

1、首先頁面須要一區域用於顯示時間

2、獲取時間

$(function())

//取得系統當前時間

function gettime()

使用tolocaledatestring()直接獲取年月日,不須要再單獨獲取年、月、日

而tolocaletimestring()可直接獲取時分秒。因為它獲取的格式不是須要的。於是可單獨獲取

JS獲取當前日期並定時重新整理

js獲取當前日期時間 var date new date date.getyear 獲取當前年份 2位 date.getfullyear 獲取完整的年份 4位,2014 date.getmonth 獲取當前月份 0 11,0代表1月 date.getdate 獲取當前日 1 31 date.getd...

js獲取當前日期

1.date 物件用於處理日期和時間。建立 date 物件的語法 var mydate new date date 物件會自動把當前日期和時間儲存為其初始值。2.引數形式有以下5種 new date month dd,yyyy hh mm ss new date month dd,yyyy new ...

vue實現獲取當前日期時間並實時重新整理

功能需求 獲取當前系統時間,在頁面上顯示 年月日時分秒,並且實時重新整理,和系統時間保持一致 第一步 在deta 裡面宣告變數 data 第二步 定義獲取日期時間方法gettime,並在created 生命週期裡面呼叫,在例項建立前呼叫 created 方法gettime如下 methods els...