RT。
我在JSP页面的顶部显示了年、月、日和 时间,可是我发现时间不变化,显示的是登录页面时的时间,我如果要让显示的时间不断的变化,就像钟那样,要如何实现呢?
在网上找了一个:
<script language="JavaScript">
function get_time()
{
var date = new Date();
var hour="";
var minute="";
var second="";
hour = add_zero(date.getHours());
minute =add_zero(date.getMinutes());
second=add_zero(date.getSeconds());
timetable.innerText=" "+hour+":"+minute+":"+second;
}
funtion add_zero(temp)
{
if(temp<10)
return "0"+temp;
else return temp;
}
setInterval("get_time()",1000);
</script>
<DIV id="timetable" ></DIV>
<div id="timetable"></div>
------是干什么的?
我怎么使用这段代码?
我要显示时间部分的代码是这样的:
<bean:write name="clock" property="year" />
年
<bean:write name="clock" property="month" />
月
<bean:write name="clock" property="dayOfMonth" />
日 星期
<bean:write name="clock" property="day" />
当前时间:
</NOBR>
想在 当前时间: 的后面显示,我要怎么做?
谢谢!!!
[此贴子已经被作者于2006-7-26 7:34:29编辑过]