js变量类型判断 1、function类型 function isFunction(obj) { if (Object.prototype.toString.call(obj) === '[object Function]') { return true; } return false; }