- 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 CDate 函数
该函数将有效的日期和时间表达式转换为 date 类型。
语法
cdate(date)
示例
<!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> a = cdate("Jan 01 2020") document.write("The Value of a : " & a) document.write("<br />") b = cdate("31 Dec 2050") document.write("The Value of b : " & b) </script> </body> </html>
在 Internet Explorer 中将该脚本保存为 .html 格式并执行之后,它将产生以下结果 −
The Value of a : 1/01/2012 The Value of b : 31/12/2050
vbscript_date.htm
广告