判断是否为数组
摘要:
判断一个对象是否为数组比较麻烦,以下是我收集的各种版本Douglas Crockford的版本 var isArray = function(a){ return a && typeof a === 'object' && typeof a.length === 'number' && typeof a.splice === 'function' && !(a.propertyIsEnumerab... 阅读全文
posted @ 2009-09-15 22:50 司徒正美 阅读(1932) 评论(7) 推荐(2) 编辑