<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>testDate</title>
<script type="text/javascript">
function startTime(){
var today = new Date();
var hours = today.getHours();
var minutes = today.getMinutes();
var seconds = today.getSeconds();
hours = checkTime(hours);
minutes = checkTime(minutes);
var weekdays = new Array();
weekdays[0] = "星期日";
weekdays[1] = "星期一";
weekdays[2] = "星期二";
weekdays[3] = "星期三";
weekdays[4] = "星期四";
weekdays[5] = "星期五";
weekdays[6] = "星期六";
var year = today.getYear();
var month = today.getMonth();
var day = today.getDate();
document.getElementById('txt').innerHTML = "今天是: "+ year + "年" + (month+1) + "月" + day +"日 " + weekdays[today.getDay()] +hours + ":" + minutes + ":" + seconds;
setTimeout('startTime()',1000);
}
function checkTime(i)
{
if (i<10)
{
i="0" + i;
}
return i
}
</script>
</head>
<body οnlοad="startTime()">
<div id="txt"> </div>
</body>
</html>
javascript输出今天年份,日期,星期,当前时间
最新推荐文章于 2024-08-19 15:16:50 发布