本文实例讲述了JS使用Date对象实时显示当前系统时间的方法。分享给大家供大家参考,具体
本文实例讲述了JS使用Date对象实时显示当前系统时间的方法。分享给大家供大家参考,具体如下:
JS中包含Date对象,其提供了一些方法获取系统日期,直接上代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>www.jb51.net 获取系统时间</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(); //获取小时
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 = "当前时间:" + 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代码运行工具:http://tools.jb51.net/code/HtmlJsRun测试运行结果如下:
PS:这里再为大家推荐几款时间及日期相关工具供大家参考使用:
在线日期/天数计算器: http://tools.jb51.net/jisuanqi/date_jisuanqi
在线日期计算器/相差天数计算器: http://tools.jb51.net/jisuanqi/datecalc
在线日期天数差计算器: http://tools.jb51.net/jisuanqi/onlinedatejsq
Unix时间戳(timestamp)转换工具: http://tools.jb51.net/code/unixtime
JS Date对象 实时显示 当前 系统时间