当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Hour 函数
The Hour function returns a number between 0 and 23 that represents the hour of the day.
Hour 函数能返回 0 到 23 之间的一个整数(包括 0 和 23),代表一天中的某一小时
Hour(time) |
参数 | 描述 |
---|---|
time | Required. Any expression that can represent a time 必选项。time 参数是任意可以代表时间的表达式 |
document.write(Now & "<br />") 输出: 1/15/2002 10:07:47 AM |
document.write(Hour(Time)) 输出: 10 |