添加倒计时首页倒计时功能以提醒快要考试了。
代码(asp+js)如下:
<%da = datediff("d",now(),#1/18/2011#)
if da < 0 then
ret="已经过了哦!"
elseif da = 0 then
ret="<font color=\""red\"">就是今天啦!</font>"
elseif da = 1 then
ret="<font color=\""red\"">只有 1 天啦!</font>"
elseif da = 2 then
ret="<font color=\""red\"">还剩 2 天啦!</font>"
else
ret="还有<font color=\""blue\""> " & da & " </font>天"
end if%>
document.writeln("距离考试&过生日: <%=ret%>");
发表评论