标签:images string highlight erro prot 收藏 png tty ber
1.typeof
缺点:对null和Array等类型的检测不是很方便
1 typeof null; //"object" 2 typeof []; //"object"
2.instanceof
缺点:1.只适用于对象类型
2.只要当前的这个类在实例的原型链上,检测出来的结果都是true
123 instanceof Number; //false null instanceof null; //TypeError null instanceof Object; //false function A(){} function B(){} A.prototype=new B(); var aObj=new A(); aObj instanceof B;//true aObj instanceof A;//true
3.constructor
注意:在类继承时会出错
4.自定义方法实现(比较通用)
测试:
标签:images string highlight erro prot 收藏 png tty ber
原文地址:http://www.cnblogs.com/mickybg/p/7049912.html