本文實(shí)例講述了JS使用Date對象實(shí)時(shí)顯示當(dāng)前系統(tǒng)時(shí)間的方法。分享給大家供大家參考,具體如下:
JS中包含Date對象,其提供了一些方法獲取系統(tǒng)日期,直接上代碼:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>www.gxlcms.com 獲取系統(tǒng)時(shí)間</title> <script language="JavaScript"> function realSysTime(clock) { var now = new Date(); var year = now.getFullYear(); //獲取年份 var month = now.getMonth(); //獲取月份 var date = now.getDate(); //獲取日期 var day = now.getDay(); //獲取星期 var hour = now.getHours(); //獲取小時(shí) var minute = now.getMinutes(); //獲取分鐘 var seconds = now.getSeconds(); //獲取秒 month = month + 1; var arr_week = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"); var week = arr_week[day]; var time = year + "年" + month + "月" + date + "日 " + week + " " + hour + ":" + minute + ":" + seconds; clock.innerHTML = "當(dāng)前時(shí)間:" + time; } function show() { window.setInterval("realSysTime(clock)", 1000); } </script> </head> <body> <div id='clock'></div> <script> window.onload=show() </script> </body> </html>
使用在線HTML/CSS/JavaScript代碼運(yùn)行工具:http://tools.jb51.net/code/HtmlJsRun測試運(yùn)行結(jié)果如下:
PS:這里再為大家推薦幾款時(shí)間及日期相關(guān)工具供大家參考使用:
在線日期/天數(shù)計(jì)算器:
http://tools.jb51.net/jisuanqi/date_jisuanqi
在線日期計(jì)算器/相差天數(shù)計(jì)算器:
http://tools.jb51.net/jisuanqi/datecalc
在線日期天數(shù)差計(jì)算器:
http://tools.jb51.net/jisuanqi/onlinedatejsq
Unix時(shí)間戳(timestamp)轉(zhuǎn)換工具:
http://tools.jb51.net/code/unixtime
更多關(guān)于JavaScript相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《JavaScript時(shí)間與日期操作技巧總結(jié)》、《JavaScript查找算法技巧總結(jié)》、《JavaScript錯(cuò)誤與調(diào)試技巧總結(jié)》、《JavaScript數(shù)據(jù)結(jié)構(gòu)與算法技巧總結(jié)》、《JavaScript遍歷算法與技巧總結(jié)》及《JavaScript數(shù)學(xué)運(yùn)算用法總結(jié)》
希望本文所述對大家JavaScript程序設(shè)計(jì)有所幫助。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com