codecamp

VBScript TypeName 函数

VBScript TypeName 函数返回一字符串,它提供了关于变量的变体子类型信息。


VBScript 参考手册完整的 VBScript 参考手册

TypeName 函数返回指定变量的子类型。

TypeName 函数返回下面的值:

  • Byte - 表示一个字节值
  • Integer - 表示一个整型值
  • Long - 表示一个长整型值
  • Single - 表示一个单精度浮点值
  • Double - 表示一个双精度浮点值
  • Currency - 表示一个货币值
  • Decimal - 表示一个十进制值
  • Date - 表示一个日期或时间值
  • String - 表示一个字符串值
  • Boolean - 表示一个布尔值,True 或 False
  • Empty - 表示一个未初始化变量
  • Null - 表示无有效数据
  • <object type> - 表示实际对象类型名
  • Object - 表示一般对象
  • Unknown - 表示未知对象类型
  • Nothing - 表示还未引用对象实例的对象变量
  • Error - 表示一个错误

语法

TypeName(varname)

参数 描述
varname 必需。变量的名称。

实例

实例

<script type="text/vbscript">

x="Hello World!"
document.write(TypeName(x) & "<br />")
x=4
document.write(TypeName(x) & "<br />")
x=4.675
document.write(TypeName(x) & "<br />")
x=Null
document.write(TypeName(x) & "<br />")
x=Empty
document.write(TypeName(x) & "<br />")
x=True
document.write(TypeName(x))

</script>

以上实例输出结果:

String
Integer
Double
Null
Empty
Boolean

尝试一下 »

VBScript 参考手册完整的 VBScript 参考手册
VBScript IsObject 函数
VBScript IsNumeric 函数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

VB 函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }