typeod和instanceof區別!

javascript:typeof與instanceof區別

from:http://www.wxwdesign.cn/article/skills/javascript_typeof_instanceof.htm 
javascript

JavaScript中typeof和instanceof經常使用來判斷一個變量是否爲空,或者是什麼類型的。但它們之間仍是有區別的:html


typeof

typeof 是一個一元運算,放在一個運算數以前,運算數能夠是任意類型。
它返回值是一個字符串,該字符串說明運算數的類型。,typeof通常只能返回以下幾個結果:number,boolean,string,function,object,undefined。 咱們能夠使用typeof來獲取一個變量是否存在,如if(typeof a!="undefined"){alert("ok")},而不要去使用if(a)由於若是a不存在(未聲明)則會出錯,對於Array,Null等特 殊對象使用typeof一概返回object,這正是typeof的侷限性。

java

網上的一個小例子:dom

 

運行代碼ide

instanceof

instance:實例,例子

a instanceof b?alert("true"):alert("false");   //a是b的實例?真:假

instanceof 用於判斷一個變量是否某個對象的實例,如var a=new Array();alert(a instanceof Array);會返回true,同時alert(a instanceof Object)也會返回true;這是由於Array是object的子類。再如:function test(){};var a=new test();alert(a instanceof test)會返回

談到instanceof咱們要多插入一個問題,就是function的arguments,咱們你們也許都認爲arguments是一個Array,但若是使用instaceof去測試會發現arguments不是一個Array對象,儘管看起來很像。

另外:

測試 var a=new Array();if (a instanceof Object) alert('Y');else alert('N');
得'Y’ 

但 if (window instanceof Object) alert('Y');else alert('N');

得'N'

因此,這裏的instanceof測試的object是指js語法中的object,不是指dom模型對象。

使用typeof會有些區別
alert(typeof(window) 會得 objectpost

相關文章
相關標籤/搜索