当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


VBScript Second用法及代码示例



Second Function 返回一个介于 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

相关用法


注:本文由纯净天空筛选整理自 VBScript Second Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。