es5中新加的方法Array.isArray是不是數值,低版本瀏覽器中能夠這樣修復if (!Array.isArray) { Array.isArray = function(arg) { return Object.prototype.toString.call(arg) === '[object Array]'; }; }