我是JavaScript初心者,不懂为何我写的钟不会跑,而且标题会跑掉,
不知道可以请问各位大大吗? 如果有违反板龟来信自删。
以下是我的程式:
<HTML><HEAD>
<TITLE>时间</TITLE>
</HEAD>
<script LANGUAGE = "JavaScript">
function time(){
document.write("<center><font color=red size=30>现在时间
</font><br></center>");
a=new Date().getFullYear();
b=new Date().getMonth();
c=new Date().getDate();
d=new Date().getDay();
e=new Date().getHours();
f=new Date().getMinutes();
g=new Date().getSeconds();
day=new Array("日","一","二","三","四","五")
document.write("<center><font color=blue size=40>");
document.write(a-1911+"年"+(b+1)+"月"+c+"日"+"星期"+day[d]+"<br>");
document.write(e+"时"+f+"分"+g+"秒");
document.write("</center></font>");
setTimeout('time()',1000);
}
</script>
<BODY OnLoad="time() ; alert('欢迎')">
</BODY >
</HTML>