使用jquery篩選和過濾陣列程式碼例項

antzone發表於2017-03-24

陣列是可以用來存放資料,在實際應用中,陣列中的元素可能並不是個個都是符合要求的,需要進行篩選過濾才行,下面就通過程式碼例項介紹一下如何利用jquery實現曬西安過濾功能。

程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html> 
<html> 
<head> 
<meta charset=" utf-8"> 
<meta name="author" content="http://www.softwhy.com/" /> 
<title>jQuery.grep()函式-螞蟻部落</title> 
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){ 
  var theArray=[1,2,3,4,5];
  var func=function(ele,index){
    return ele>3;
  }
  $("#antzone").text($.grep(theArray,func,true));  
}); 
</script> 
</head> 
<body> 
<div id="antzone"></div>
</body> 
</html>

上面的程式碼實現了過濾效果,具體不多介紹了,更多可以參閱相關閱讀。

$.grep()函式可以參閱jQuery.grep()一章節。

相關文章