VBScript Second 函数

定义和用法

Second 函数可返回表示分钟的秒数的数字,介于 0 到59 之间。

语法

  1. Second(time)
参数 描述
time 必需的。任何可表示时间的表达式。

实例

例子 1

  1. D = #1/15/2002 10:55:51 AM#
  2. document.write(Second(D))

输出:

  1. 51

例子 2

  1. T = #10:55:51 AM#
  2. document.write(Second(T))

输出:

  1. 51

例子 3

下面这个例子是一个可输出中文格式时间的 ASP 函数,其中使用到了 VBScript 的 Hour、Minute 以及 Second 函数。

  1. <%
  2. Sub HHMMSS(T)
  3. H = Hour(T)
  4. If H<12 then
  5. Response.Write "上午"&H&"时"
  6. Else
  7. Response.Write "下午"&(H-12)&"时"
  8. End If
  9. Response.Write Minute(T)&"分"
  10. Response.Write Second(T)&"秒"
  11. End Sub
  12. %>