- VBScript 教程
- VBScript - 主页
- VBScript - 概览
- VBScript - 语法
- VBScript - 启用
- VBScript - 位置
- VBScript - 变量
- VBScript - 常量
- VBScript - 运算符
- VBScript - 决策
- VBScript - 循环
- VBScript - 事件
- VBScript - Cookie
- VBScript - 数值
- VBScript - 字符串
- VBScript - 数组
- VBScript - 日期
- VBScript 高级
- VBScript - 过程
- VBScript - 对话框
- VBScript - 面向对象
- VBScript - 正则表达式
- VBScript - 错误处理
- VBScript - 杂项语句
- VBScript 有用资源
- VBScript - 问题和解答
- VBScript - 快速指南
- VBScript - 有用资源
- VBScript - 讨论
VBScript TimeValue 函数
TimeValue 函数将给定的输入字符串转换为有效的 time。
语法
TimeValue(StringTime)
示例
<!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> document.write(TimeValue("20:30") & "<br />") document.write(TimeValue("5:15") & "<br />") document.write(TimeValue("2:30:58") & "<br />") </script> </body> </html>
当您将其另存为 .html 并通过 Internet Explorer 打开后,上述脚本将生成以下结果 −
8:30:00 PM 5:15:00 AM 2:30:58 AM
vbscript_date.htm
广告