当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript IsDate 函数
The IsDate function returns a Boolean value that indicates if the evaluated expression can be converted to a date. It returns True if the expression is a date or can be converted to a date; otherwise, it returns False.
IsDate 函数返回 Boolean 值指明某表达式是否可以转换为日期,返回为真则该表达式可以转换,假则不行。
Note: The IsDate function uses local setting to determine if a string can be converted to a date ("January" is not a month in all languages.)
注意:合法的日期范围随操作系统语言的不同而不同。
IsDate(expression) |
参数 | 描述 |
---|---|
expression | Required. The expression to be evaluated 必选项,expression 参数可以是任意可被识别为日期和时间的日期表达式或字符串表达式 |
document.write(IsDate("April 22, 1947") & "<br />") 输出: True |