發新話題
打印

時間顯示

時間顯示

如不能顯示語法效果,可貼去本站語法測試板試看







<center> <script language="JavaScript">document.write("<span id='clock'></span>");
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();</script> </center>
我唔係人.........

TOP

複製上列語法



我唔係人.........

TOP