JavaScript中使用Object.prototype.toString判斷是否為數組

來源:互聯網
上載者:User

   為什麼要用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;

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.