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


VBScript CDate用法及代码示例



该函数将有效的日期和时间表达式转换为日期类型。

用法

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>

当你将它保存为 .html 并在 Internet Explorer 中执行它时,那么上面的脚本将产生以下结果——

The Value of a:1/01/2012
The Value of b:31/12/2050 

相关用法


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