首頁 > web前端 > js教程 > 主體

JavaScript判斷陣列是否包含指定元素的方法_javascript技巧

WBOY
發布: 2016-05-16 15:52:00
原創
1024 人瀏覽過

本文實例講述了JavaScript判斷陣列是否包含指定元素的方法。分享給大家供大家參考。具體如下:

這段程式碼透過prototype定義了數組方法,這樣就可以在任意數組呼叫contains方法

/**
 * Array.prototype.[method name] allows you to define/overwrite an objects method
 * needle is the item you are searching for
 * this is a special variable that refers to "this" instance of an Array.
 * returns true if needle is in the array, and false otherwise
 */
Array.prototype.contains = function ( needle ) {
  for (i in this) {
    if (this[i] == needle) return true;
  }
  return false;
}

登入後複製

用法:

// Now you can do things like:
var x = Array();
if (x.contains('foo')) {
  // do something special
}

登入後複製

希望本文所述對大家的javascript程式設計有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!