function add0(Completion) { return Completion < 10 ? "0"+Completion:Completion; } function systime() { var now = new Date(); //获取Date对象的一个实例 var hour = now.getHours(); //获取小时 var min = now.getMinutes(); //获取分钟 var sec = now.getSeconds(); //获取秒钟 var mouth = now.getMonth() + 1; //获取月份 var year = now.getFullYear(); //获取年份 var day = now.getDay(); //获取星期 var date = now.getDate(); //获取日期 var xingqi = "星期"; var arr = new Array("日", "一", "二", "三", "四", "五", "六"); var week = arr[day]; var time = year + "年" + add0(mouth) + "月" + add0(date) + "日" + " " + xingqi + week + " " + add0(hour) + ":" + add0(min) + ":" + add0(sec); //alert("当前系统时间:"+time); document.getElementById("clock").innerHTML="当前系统时间:"+time; } window.onload=function(){ window.setInterval("systime()",1000); }
时间: 2024-10-11 04:58:20