具体代码参见Unit12.php。1.1 日期显示l todayDate = new Date();返回标准格式的时间。(Tue May 11 10:47:27 UTC+0800 2010)。l date = todayDate.getDate();l month= todayDate.getMonth()+1;l year= todayDate.getYear();从标准格式的时间中分离年、月、日。l if(navigator.appVersion.indexOf(MSIE) -1)判断当前浏览器的种类是否为IE。l document.write(year);在浏览器中输出year的值。1.2 数字时钟1l document.getElementById(Label1).innerText = myclock;(用Delphi for PHP设计的页面中,添加一个对象名为Label1的Label标签,)把myclock的值赋给Label1。1.3 数字时钟2(图像源)l img = new Image()