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