在网页中加上年月日、时间的代码

2025-03-04 08:40:41
推荐回答(3个)
回答1:





无标题文档






回答2:

<%
week=weekday(now)
if week=1 then
week="一"
elseif week=2 then
week="二"
elseif week=3 then
week="三"
elseif week=4 then
week="四"
elseif week=5 then
week="五"
elseif week=6 then
week="六"
elseif week=7 then
week="日"
end if

hours=hour(now)
if hours >=5 and hours < 11 then
hours="早上好!"
elseif hours >=11 and hours < 13 then
hours="中午好!"
elseif hours >=13 and hours < 16 then
hours="下午好!"
elseif hours >=16 and hours < 18 then
hours="傍晚好!"
elseif hours >=18 and hours < 23 then
hours="晚上好!"
elseif hours >=23 or hours < 5 then
hours="深更半夜的 该睡觉了!"
end if
response.write year(now)&"年"&month(now)&"月"&day(now)&"日 星期"&week&" "&hour(now)&"点"&minute(now)&"分"&second(now)&"秒 "
response.write hours

%>

回答3:

我觉得可以用flash做一个 挺简单的, 需要的话百度HI我