$.isArray内部实现

isArray: Array.isArray || function( obj ) {
return jQuery.type(obj) === "array";
},

通过调用array.isarray来确定。如果存在兼容性问题,则使用type进行判断。
而type方法是通过object.prototype.tostring来进行判断。jquery内置了字典。通过查询,可以枚举出对应的类型。[object Array]

你可能感兴趣的:($.isArray内部实现)