首页 > 开发 > JS > 正文

JS实例教程:检查变量类型

2024-09-06 12:40:58
字体:
来源:转载
供稿:网友

tostring 本来是用来做字符串转换的,不过现在流行用来做变量类型的检查了。网页设计这里也写了一个函数,方便检查变量的类型,可以用来代替 typeof

function gettype(o) {
  var _t; return ((_t = typeof(o)) == "object" ? object.prototype.tostring.call(o).slice(8,-1):_t).tolowercase();
}

 

执行结果:

gettype("abc"); //string
gettype(true); //boolean
gettype(123); //number
gettype([]); //array
gettype({}); //object
gettype(function(){}); //function
gettype(new date); //date
gettype(new regexp); //regexp
gettype(math); //math

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表