最多見的判斷方法:typeofalert(typeof a) ------------> stringalert(typeof b) ------------> numberalert(typeof c) ------------> objectalert(typeof d) ------------> objectalert(typeof e) ------------> functionalert(typeof f) ------------> function其中typeof返回的類型都是字符串形式,需注意,例如:alert(typeof a == "string") -------------> truealert(typeof a == String) ---------------> false另外typeof 能夠判斷function的類型;在判斷除Object類型的對象時比較方便。 判斷已知對象類型的方法: instanceofalert(c instanceof Array) ---------------> truealert(d instanceof Date) alert(f instanceof Function) ------------> truealert(f instanceof function) ------------> false注意:instanceof 後面必定要是對象類型,而且大小寫不能錯,該方法適合一些條件選擇或分支。 根據對象的constructor判斷: constructoralert(c.constructor === Array) ----------> truealert(d.constructor === Date) -----------> truealert(e.constructor === Function) -------> true注意: constructor 在類繼承時會出錯eg, function A(){}; function B(){}; A.prototype = new B(); //A繼承自B var aObj = new A(); alert(aobj.constructor === B) -----------> true; alert(aobj.constructor === A) -----------> false;而instanceof方法不會出現該問題,對象直接繼承和間接繼承的都會報true: alert(aobj instanceof B) ----------------> true; alert(aobj instanceof B) ----------------> true;言歸正傳,解決construtor的問題一般是讓對象的constructor手動指向本身: aobj.constructor = A; //將本身的類賦值給對象的constructor屬性 alert(aobj.constructor === A) -----------> true; alert(aobj.constructor === B) -----------> false; //基類不會報true了; 通用但很繁瑣的方法: prototypealert(Object.prototype.toString.call(a) === ‘[object String]’) -------> true;alert(Object.prototype.toString.call(b) === ‘[object Number]’) -------> true;alert(Object.prototype.toString.call(c) === ‘[object Array]’) -------> true;alert(Object.prototype.toString.call(d) === ‘[object Date]’) -------> true;alert(Object.prototype.toString.call(e) === ‘[object Function]’) -------> true;alert(Object.prototype.toString.call(f) === ‘[object Function]’) -------> true;