一, 自己有时候写一些东西,要做类型判断,还有测试的时候,对于原生的和jQuery中的类型判断,实在不敢恭维,所以就写了一个好用的类型判断,一般情况都够用的. function test(type) { if(type === null || type === undefined) { return type; } // 如果是对象,就进里面判断,否则就是基本数据类型 else if (type instanceof Object) { // js对象判断, 由于typeof不能判断null o…