顯示時間
2008年3月5日 星期三 | 標籤: JavaScript 教學 | |!-- document.write("");
var now,hours,minutes,seconds,timeValue;
function showtime(){
now = new Date();
hours = now.getHours();
minutes = now.getMinutes();
seconds = now.getSeconds();
timeValue = (hours >= 12) ? "現在時間:下午 " : "現在時間: 上午 ";
timeValue += ((hours > 12) ? hours - 12 : hours) + " 點";
timeValue += ((minutes < 10) ? " 0" : " ") + minutes + " 分";
timeValue += ((seconds < 10) ? " 0" : " ") + seconds + " 秒 整";
clock.innerHTML = timeValue;
setTimeout("showtime()",100);
}
showtime();//-->
請在第一句前加上 <