js判断数据类型的封装函数以及判断函数。
2021-01-27 05:13
标签:function OLE 函数对象 ase reac tostring number func 数据类型 js判断数据类型的封装函数以及判断函数。 标签:function OLE 函数对象 ase reac tostring number func 数据类型 原文地址:https://www.cnblogs.com/sidianok/p/13224625.htmlvar type = function (o){
var s = Object.prototype.toString.call(o);
return s.match(/\[object (.*?)\]/)[1].toLowerCase();
};
[‘Null‘,
‘Undefined‘,
‘Object‘,
‘Array‘,
‘String‘,
‘Number‘,
‘Boolean‘,
‘Function‘,
‘RegExp‘
].forEach(function (t) {
type[‘is‘ + t] = function (o) {
return type(o) === t.toLowerCase();
};
}); //给type函数对象封装各个判断的方法
type.isObject({}) // true
type.isNumber(NaN) // true
type.isRegExp(/abc/) // true
上一篇:CSS 正常流
下一篇:php中常用的4种运行方式
文章标题:js判断数据类型的封装函数以及判断函数。
文章链接:http://soscw.com/index.php/essay/47602.html