判斷js中的數(shù)據(jù)類型有一下幾種方法:typeof婚苹、instanceof、 constructor、 prototype矢否、 $.type()/jquery.type(),接下來(lái)主要比較一下這幾種方法的異同慎陵。
先舉幾個(gè)例子:
var a = "iamstring.";
var b = 222;
var c= [1,2,3];
var d = new Date();
var e = function(){alert(111);};
var f = function(){this.name="22";};
1眼虱、最常見的判斷方法:typeof
alert(typeof a) ------------> string
alert(typeof b) ------------> number
alert(typeof c) ------------> object
alert(typeof d) ------------> object
alert(typeof e) ------------> function
alert(typeof f) ------------> function
其中typeof返回的類型都是字符串形式,需注意席纽,例如:
alert(typeof a == "string") -------------> true
alert(typeof a == String) ---------------> false
另外typeof 可以判斷function的類型捏悬;在判斷除Object類型的對(duì)象時(shí)比較方便。
2润梯、判斷已知對(duì)象類型的方法: instanceof
alert(c instanceof Array) ---------------> true
alert(d instanceof Date)
alert(f instanceof Function) ------------> true
alert(f instanceof function) ------------> false
注意:instanceof 后面一定要是對(duì)象類型过牙,并且大小寫不能錯(cuò),該方法適合一些條件選擇或分支纺铭。
3抒和、根據(jù)對(duì)象的constructor判斷: constructor
alert(c.constructor === Array) ----------> true
alert(d.constructor === Date) -----------> true
alert(e.constructor === Function) -------> true
注意: constructor 在類繼承時(shí)會(huì)出錯(cuò)
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方法不會(huì)出現(xiàn)該問(wèn)題,對(duì)象直接繼承和間接繼承的都會(huì)報(bào)true:
alert(aobj instanceof B) ----------------> true;
alert(aobj instanceof B) ----------------> true;
言歸正傳彤蔽,解決construtor的問(wèn)題通常是讓對(duì)象的constructor手動(dòng)指向自己:
aobj.constructor = A; //將自己的類賦值給對(duì)象的constructor屬性
alert(aobj.constructor === A) -----------> true;
alert(aobj.constructor === B) -----------> false; //基類不會(huì)報(bào)true了;
4摧莽、通用但很繁瑣的方法: prototype
alert(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;
大小寫不能寫錯(cuò),比較麻煩顿痪,但勝在通用镊辕。
5油够、無(wú)敵萬(wàn)能的方法:jquery.type()
如果對(duì)象是undefined或null,則返回相應(yīng)的“undefined”或“null”征懈。
jQuery.type( undefined ) === "undefined"
jQuery.type() === "undefined"
jQuery.type( window.notDefined ) === "undefined"
jQuery.type( null ) === "null"
如果對(duì)象有一個(gè)內(nèi)部的[[Class]]和一個(gè)瀏覽器的內(nèi)置對(duì)象的 [[Class]] 相同石咬,我們返回相應(yīng)的 [[Class]] 名字。 (有關(guān)此技術(shù)的更多細(xì)節(jié)卖哎。 )
jQuery.type( true ) === "boolean"
jQuery.type( 3 ) === "number"
jQuery.type( "test" ) === "string"
jQuery.type( function(){} ) === "function"
jQuery.type( [] ) === "array"
jQuery.type( new Date() ) === "date"
jQuery.type( new Error() ) === "error" // as of jQuery 1.9
jQuery.type( /test/ ) === "regexp"
其他一切都將返回它的類型“object”鬼悠。
通常情況下用typeof 判斷就可以了,遇到預(yù)知Object類型的情況可以選用instanceof或constructor方法,實(shí)在沒轍就使用$.type()方法亏娜。