系统时间对象
Posted 天--安静
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了系统时间对象相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>系统时间对象</title>
<style>
</style>
<script>
window.onload=function(){
var oBody=document.body;
setInterval(fnTime,1000);
fnTime();
function fnTime(){
var myTime=new Date();
var iYear=myTime.getFullYear();
var iMonth=myTime.getMonth()+1;
var iDate=myTime.getDate();
var iWeek=myTime.getDay();
var iHours=myTime.getHours();
var iMin=myTime.getMinutes();
var iSec=myTime.getSeconds();
var str=‘‘;
if(iWeek===0) iWeek=‘星期日‘;
if(iWeek===1) iWeek=‘星期一‘;
if(iWeek===2) iWeek=‘星期二‘;
if(iWeek===3) iWeek=‘星期三‘;
if(iWeek===4) iWeek=‘星期四‘;
if(iWeek===5) iWeek=‘星期五‘;
if(iWeek===6) iWeek=‘星期六‘;
str=iYear+‘年‘+iMonth+‘月‘+iDate+‘日‘+iWeek+‘ ‘+toTwo(iHours)+‘:‘+toTwo(iMin)+‘:‘+toTwo(iSec);
oBody.innerHTML=str;
}
}
function toTwo(n){
return n<10?‘0‘+n:‘‘+n;
}
</script>
</head>
<body>
</body>
</html>
以上是关于系统时间对象的主要内容,如果未能解决你的问题,请参考以下文章