DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> javascript模擬php函數in_array
javascript模擬php函數in_array
編輯:關於JavaScript     

js 中判斷某個元素是否存在於某個 js 數組中,相當於 php 語言中的 in_array 函數。

Array.prototype.S=String.fromCharCode(2); 
Array.prototype.in_array=function(e){ 
  var r=new RegExp(this.S+e+this.S); 
  return (r.test(this.S+this.join(this.S)+this.S)); 
}; 

用法如下:

var arr=new Array(["b",2,"a",4,"test"]); 
arr.in_array('test');//判斷 test 字符串是否存在於 arr 數組中,存在返回true 否則false,此處將返回true 

注:此函數只對字符和數字有效

jQuery中有類似的函數:http://docs.jquery.com/Utilities/jQuery.inArray

它的代碼如下:

function inArray(needle, haystack) {
  var length = haystack.length;
  for(var i = 0; i < length; i++) {
    if(haystack[i] == needle) return true;
  }
  return false;
}

以上就是本文給大家分享的全部內容了,希望大家能夠喜歡。

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