function getType(obj){
var type = typeof obj;
//排除null和Array/Date/RegExp等无法检测的类型
if(type !== "object"){
return type;
}
//万能检测法
return Object.prototype.toString.call(obj).replace(/^\[object (\S+)\]$/, '$1');
}
封装一个准确判断数据类型的函数
javascript
76 views