JS練習之獲取當前系統時間和星期,並寫入當前頁面

2021-10-08 17:59:08 字數 1361 閱讀 9600

function

getdate()

定義乙個函式getdate,呼叫內建的類date並例項化,使用以下方法分別獲得年、月、日和星期

getfullyear獲取4位數字年

getyear獲取2兩數字年

getmonth獲取月

getdate獲取日

getday獲取星期 0為週日 1為周一,以此類推,可將其作為索引讀取列表,返回中文的星期

gettime獲取時間戳

gethours獲取小時

getminutes獲取分鐘

getseconds獲取秒

getmilliseconds獲取毫秒

tolocaledatestring獲取當前日期 2020/07/31

tolocaletimestring獲取當前時間 下午10:24:59

tolocalestring獲取當前時間與日期 2020/7/31 下午10:25:58

lang

="en"

>

>

charset

="utf-8"

>

name

="viewport"

content

="width=device-width, initial-scale=1.0"

>

>

documenttitle

>

head

>

>

"btn"

>

顯示當前系統時間button

>

>

某個時間div

>

>

var btn = document.

getelementbyid

("btn"

)var div = document.

queryselector

("div"

) btn.

onclick

=function()

function

getdate()

script

>

body

>

html

>

js獲取當前系統時間

var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 mydate.get...

js獲取當前系統時間

function show function show1 var mydate new date 獲取當前年 var year mydate.getfullyear 獲取當前月 var month mydate.getmonth 1 獲取當前日 var date mydate.getdate var...

Js獲取當前系統時間

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