摘要: // 判断类型function isType(type) { return function(obj) { return Object.prototype.toString.call(obj) === '[object ' + type + ']'; }} 阅读全文
posted @ 2014-08-25 17:39 qingyezhu 阅读(109) 评论(0) 推荐(0)