js 中isArray

es5中新加的方法Array.isArray是不是數值,低版本瀏覽器中能夠這樣修復

if (!Array.isArray) { Array.isArray = function(arg) { return Object.prototype.toString.call(arg) === '[object Array]'; }; }
相關文章
相關標籤/搜索