// 判断类型function isType(type) { return function(obj) { return Object.prototype.toString.call(obj) === '[object ' + type + ']'; }}
本文共 197 字,大约阅读时间需要 1 分钟。
// 判断类型function isType(type) { return function(obj) { return Object.prototype.toString.call(obj) === '[object ' + type + ']'; }}
转载于:https://www.cnblogs.com/xiaoxian1369/p/3935498.html