主题:[讨论]求助:编写网页显示当前系统时间问题!
cnchn0001
[专家分:0] 发布于 2007-05-07 20:14:00
要求编写一个网页,以不同的颜色显示小时,分钟和秒。哪位高手能给点思路啊,我只研究出了显示的时间的代码,怎么以不同的颜色显示小时,分钟和秒啊?
[em10][em10][em10][em10]
回复列表 (共4个回复)
沙发
bilan278300627 [专家分:360] 发布于 2007-05-09 00:49:00
呵呵,这个问题我也想问 。为什么我取的时间是静态的。它不会动态的显示呢?楼主可不可以帮忙回答下?
板凳
luzaiyuanfang [专家分:450] 发布于 2007-05-22 10:04:00
以下是我用javascript实现的.希望对你有帮助。
<html>
<head>
<script>
function writeTime(){
var hStyleBegin = "<font color='red'>";
systemDate = new Date();
hour = systemDate.getHours();
minute = systemDate.getMinutes();
seconds = systemDate.getSeconds();
document.write("<font color='red'>" + hour + "<\/font>" + ":");
document.write("<font color='green'>" + minute + "<\/font>" + ":");
document.write("<font color='blue'>" + seconds + "<\/font>");
document.close();
}
</script>
</head>
<body onload="javascript:writeTime();">
</body>
</html>
3 楼
zwufei [专家分:10] 发布于 2007-06-10 07:52:00
var hStyleBegin = "<font color='red'>";
请问这个什么意思啊?
4 楼
luzaiyuanfang [专家分:450] 发布于 2007-06-11 09:35:00
var hStyleBegin = "<font color='red'>";
呵呵。document.write("<font color='green'>" + minute + "<\/font>" + ":");
这句写成document.write(hStyleBegin + minute + "<\/font>" + ":");后来,就忘记删了。
我来回复