//判断是否是数组
function isArray(obj) {  
  return Object.prototype.toString.call(obj) === '[object Array]';   
}

05-11 14:50