VBScript Second 函数
Second 函数返回 0 到 59 之间的数字,表示指定时间戳的一小时中的秒数。
语法
Second(time)
示例
<!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> document.write("Line 1: " & Second("3:13:25 PM") & "<br />") document.write("Line 2: " & Second("23:13:45") & "<br />") document.write("Line 3: " & Second("2:20 PM") & "<br />") </script> </body> </html>
当您将其另存为 .html 并在 Internet Explorer 中执行时,上述脚本将产生以下结果 −
Line 1: 25 Line 2: 45 Line 3: 0