Js检查变量类型的代码()

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Js检查变量类型的代码()

  2020-05-12 我要评论
JavaScript检查变量的类型,并判断是整形或是字符串或是其它类型等等。

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

2、toString 本来是用来做字符串转换的,不过现在流行用来做变量类型的检查了。舜子这里也写了一个函数,方便检查变量的类型,可以用来代替 typeof
复制代码 代码如下:

function getType(o) {
var _t; return ((_t = typeof(o)) == "object" ? o==null && "null" || 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); /https://img.qb5200.com/download-x/date
getType(new RegExp); //regexp
getType(Math); //math
getType(null); //null

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们