关于Object.prototype.toString.call

slice(8,-1)意思是从第8位开始(包含第8位)到最后一位之前(-1的意思就是最后一位,不包含最后一位);

Object.prototype.toString.call(boj)这个是用来判断数据类型,

如果boj是数字,得出的结果是[object Number],从零开始数,第8位就是N,最后一位的前一位就是r,所以取得Number;

如果boj是字符串,得出结果是[object String],第8位S,最后一位的前一位g,取得String

function type(boj){

       return Object.prototype.toString.call(boj).slice(8,-1);
}

type(1)//"Number"

type("abc")//"String"

 获取obj的类型

function getObjType(obj){
    //tostring will return a constructor with a different object
    var toString = Object.prototype.toString;
    var map = {
       '[object Boolean]'  : 'boolean', 
       '[object Number]'   : 'number', 
       '[object String]'   : 'string', 
       '[object Function]' : 'function', 
       '[object Array]'    : 'array', 
       '[object Date]'     : 'date', 
       '[object RegExp]'   : 'regExp', 
       '[object Undefined]': 'undefined',
       '[object Null]'     : 'null', 
       '[object Object]'   : 'object'
   };
    // if obj is the instance of HTML elment
   if(obj instanceof Element) {
        return 'element';
   }
   return map[toString.call(obj)];
}

or

function getObjType(obj){
    //tostring will return a constructor name with a different obj
    var toString = Object.prototype.toString;
    var map = {
       Boolean  : 'boolean', 
       Number   : 'number', 
       String   : 'string', 
       Function : 'function', 
       Array    : 'array', 
       Date     : 'date', 
       RegExp   : 'regExp', 
       Undefined: 'undefined',
       Null     : 'null', 
       Object   : 'object'
   };
   // if obj is the instance of HTML elment
   if(obj instanceof Element) {
        return 'element';
   }
   return map[toString.call(obj).slice(8,-1)];
}

 

转载于:https://www.cnblogs.com/bldf/p/6374821.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值