摘要: function type(o){ var t, c, n; if(o === null) return 'null'; if(o !== o) return 'nan'; if((t = typeof o) !== 'object') return t; if((c = classof(o) !== 'Object')) return c; if(o.constructor && typeof o.construc... 阅读全文
posted @ 2013-08-20 08:26 fanhc019 阅读(197) 评论(0) 推荐(0) 编辑