還有我想加一個時鐘在login旁邊,可以怎做??希望可以幫忙幫忙
<p align="center"><font size="3" color="#B30000"><b><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) ? "p.m. " : "a.m. ";
timeValue += ((hours > 12) ? hours - 12 : hours) + " H";
timeValue += ((minutes < 10) ? " 0" : " ") + minutes + " M";
timeValue += ((seconds < 10) ? " 0" : " ") + seconds + " S";
clock.innerHTML = timeValue;
setTimeout("showtime()",100);
}
showtime();
//-->
</script>
</b></font></p>[/url]