当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript IsDate 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript IsDate 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 205 ::
收藏到网摘: n/a

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 参数可以是任意可被识别为日期和时间的日期表达式或字符串表达式

实例 1

document.write(IsDate("April 22, 1947") & "<br />")
document.write(IsDate(#11/11/01#) & "<br />")
document.write(IsDate("#11/11/01#") & "<br />")
document.write(IsDate("Hello World!"))
输出:
True
True
False
False

评论 (0) All

登陆 | 还没注册?