Js检查变量类型的代码()
时间:2021-08-30 10:01:36|栏目:JavaScript代码|点击: 次
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); //date
getType(new RegExp); //regexp
getType(Math); //math
getType(null); //null
[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); //date
getType(new RegExp); //regexp
getType(Math); //math
getType(null); //null
上一篇:Firefox中通过JavaScript复制数据到剪贴板(Copy to Clipboard 跨浏览器版)
栏 目:JavaScript代码
下一篇:Javascript 通过json自动生成Dom的代码
本文标题:Js检查变量类型的代码()
本文地址:http://www.codeinn.net/misctech/170953.html