实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p>Countdown to year 3000:</p>
6
7
<p>
8
<script type="text/vbscript">
9
millennium=CDate("1/1/3000 00:00:00")
10
document.write("It is " & DateDiff("yyyy", Now(), millennium) & " years to year 3000!<br>")
11
document.write("It is " & DateDiff("m", Now(), millennium) & " months to year 3000!<br>")
12
document.write("It is " & DateDiff("d", Now(), millennium) & " days to year 3000!<br>")
13
document.write("It is " & DateDiff("h", Now(), millennium) & " hours to year 3000!<br>")
14
document.write("It is " & DateDiff("n", Now(), millennium) & " minutes to year 3000!<br>")
15
document.write("It is " & DateDiff("s", Now(), millennium) & " seconds to year 3000!<br>")
16
</script>
17
</p>
18
19
</body>
20
</html>