标签:ret pre bool color false 一个 als 字符 array
typeof只能判断区分基本类型,number、string、boolean、undefined和object,function;
typeof 0; //number; typeof true; //boolean; typeof undefined; //undefined; typeof "hello world" //string; typeof function(){}; //function; typeof null; //object typeof {}; //object; typeof []; //object
从上例我们可以看出, typeof 判断对象和数组都返回object,因此它无法区分对象和数组。
var a={}; a instanceof Object //true a intanceof Array //false var b=[]; b instanceof Array //true b instanceof Object //true
因为数组属于object中的一种,所以数组instanceof object,也是true.
var c=‘abc‘; c instanceof String; //false var d=new String(); d instanceof String //true
instanceof不能区分基本类型string和boolean,除非是字符串对象和布尔对象。如上例所示。
var o={}; o.constructor==Object //true var arr=[]; arr.constructor==Array //true arr.constructor==Object //false
可以看出constructor可以区分Array和Object。
var n=true; n.constructor==Boolean //true var num=1; num.constructor==Number //true var str=‘hello world‘; str.constructor==String //true
var num=new Number();
num.constructor==Number //true
不过要注意,constructor属性是可以被修改的,会导致检测出的结果不正确
function Person(){ } function Student(){ } Student.prototype = new Person(); var John = new Student(); console.log(John.constructor==Student); // false console.log(John.constructor==Person); // true
Object.prototype.toString.call(123) //"[object Number]" Object.prototype.toString.call(‘str‘) //"[object String]" Object.prototype.toString.call(true) //"[object Boolean]" Object.prototype.toString.call({}) //"[object Object]" Object.prototype.toString.call([]) //"[object Array]"
封装一个判断数组和对象的方法
function typeObj(obj){ var type=Object.prototype.toString.call(obj); if(type==‘[object Array]‘){ return ‘Array‘; }elseif(type==‘[object Object]‘){ return ‘Object‘; }else{ return "obj is not object or array" } }
Object.prototype.toString方法的在被调用的时候,会执行如下的操作步骤:
1. 获取对象的类名(对象类型)。
[[Class]]是一个内部属性,所有的对象(原生对象和宿主对象)都拥有该属性.在规范中,[[Class]]是这么定义的:
内部属性,[[Class]] 一个字符串值,表明了该对象的类型。
2. 然后将[object 获取的对象类型的名]组合为字符串
3. 返回字符串 “[object Array]” 。
$.type(obj) ;
$.isArray(obj);
$.isFunction(obj);
$.isPlainObject(obj);
$.type([]) //array $.isArray([]); //true $.isFunction(function(){}); //true $.isPlainObject({}); //true $.isPlainObject([]); //false
标签:ret pre bool color false 一个 als 字符 array
原文地址:https://www.cnblogs.com/sunmarvell/p/9386075.html