DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JavaScript中使用Object.prototype.toString判斷是否為數組
JavaScript中使用Object.prototype.toString判斷是否為數組
編輯:關於JavaScript     

為什麼要用Object.prototype.toString而不是Function.prototype.toString或者其它?這是和他們的toString解釋方式有關系的。下面是ECMA中對Object.prototype.toString的解釋:
復制代碼 代碼如下:
Object.prototype.toString( )

When the toString method is called, the following steps are taken:
1. Get the [[Class]] property of this object.
2. Compute a string value by concatenating the three strings “[object “, Result (1), and “]”.
3. Return Result (2)

其過程簡單說來就是:1、獲取對象的類名(對象類型)。2、然後將[object、獲取的類名、]組合並返回。
ECMA中對Array有如下說明:
復制代碼 代碼如下:
The [[Class]] property of the newly constructed object is set to “Array”.

因此我們用如下代碼來檢測數組:
復制代碼 代碼如下:
function isArray(o) {   return Object.prototype.toString.call(o) === '[object Array]';  } 

這種方式既解決了instanceof存在的跨頁面問題,也解決了屬性檢測方式所存在的問題,實在是一種妙招,一個很好的解決方案。
除此之外,這種解決辦法也可以應用於判斷Date,Function等類型的對象。
 
另外還有幾個方法:
復制代碼 代碼如下:
var arr = []; return arr instanceof Array; 

如果有其他好的方法不妨貼出來。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved