日期:2014-05-16 浏览次数:20384 次
javascript判断一个对象是数组
?
function isArray(o){
??? return Object.prototype.toString.call(o) === '[object Array]';
}?