如何填写“早上好”“下午好”“晚上好”等的网页代码?急急急急,谢谢!!

2024年11月13日 07:55
有1个网友回答
网友(1):

<%
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
就是判断你现在的时间,属于什么时候,然后输出显示。