var class2type = {}; ("Boolean Number String Function Array Date RegExp Object Error").split(" ").forEach(function(item,index){ class2type["[object "+item+']'] = item.toLowerCase(); }) function type(param){ if(param == null){…
JS判断数据类型 例子: var a = "iamstring."; var b = 222; var c= [1,2,3]; var d = new Date(); var e = function(){alert(111);}; var f = function(){this.name="22";}; 1.最常见判断方法:typeof 可以判断基本数据类型,对于引用数据类型就要用别的 alert(typeof a) ------------> strin…