请问,能获得到js对象的类型吗?
认证高级PHP讲师
Object.prototype.toString.call(document);
var test1=1;var test2='z';var test3={a:'b'};console.log(typeof test1);console.log(typeof test2);console.log(typeof test3);
var string='hello world'; string instanceof String; return true; return false; ....
typeof 只会返回基本类型,或是“object”instanceof 只是判断一个对象是不是某种类型的。
typeof
instanceof
可以用 Object.getPrototypeOf(对象).constructor.name或者直接对象.constructor.name(如果对象没有定义新的contructor属性)。当然,这对于用匿名函数创建的对象就不能用了,可喜的是DOM元素的对象不不属于这种情况。
Object.getPrototypeOf(对象).constructor.name
对象.constructor.name
contructor
Object.prototype.toString.call(document);
var test1=1;
var test2='z';
var test3={a:'b'};
console.log(typeof test1);
console.log(typeof test2);
console.log(typeof test3);
typeof
只会返回基本类型,或是“object”instanceof
只是判断一个对象是不是某种类型的。可以用
Object.getPrototypeOf(对象).constructor.name
或者直接对象.constructor.name
(如果对象没有定义新的contructor
属性)。当然,这对于用匿名函数创建的对象就不能用了,可喜的是DOM元素的对象不不属于这种情况。