网页时间代码怎么弄?急急急
发布网友
发布时间:2022-04-22 17:09
我来回答
共1个回答
热心网友
时间:2023-07-03 06:00
<%
if time()<#12:00:00# and time()<=#00:00:00# then
response.Write("早上好")
Else if time()<#19:00:00# And time()>=#12:00:00# then
response.Write("下午好")
else
response.Write("晚上好")
end if
end if
%>
以上是正确的写法
time()现在你系统的时间
然后if<条件> then
执行 A
esle
执行 B
end if
大致意思是,如果条件成立就执行A,如果不成立就执行B
就是判断你现在的时间,属于什么时候,然后输出显示。