Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
279 views
in Technique[技术] by (71.8m points)

javascript - append data can't filter in json?

i have problem to filtering data with jquery and json

how do the best filtering data, but my code not find array in json ?

help find solved my problem. thanks

$(document).ready(function(){
  $("#search").keyup(function(){
    $("#result").html('');
    var searchField = $("#search").val();
    var expression = new RegExp(searchField, "i");
    $.getJSON("https://raw.githubusercontent.com/marshallt09/taruhan88/master/kotakabupaten.json", function(result){
      var x = result.listkotakabupaten;
      for(var i = 0; i < x.length; i++){
        if ( x[i].kotakab.search(expression) != 1 && x[i].kotakab.length != -1) {
          $("#result").append("<li>"+x[i].kotakab+"</li>");
        }
      }
    });
  });
});
*{
  margin: 0;
  padding: 0;
}
ul {
  width: 60%;
  height: 100%;
}

li {
  padding: 5px;
  list-style: none;
  border:1px solid;box-sizing: border-box;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<input type="text" name="search" id="search" placeholder="search">
<ul id="result"></ul>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

x[i].kotakab.search(expression) != 1 is inocrect. A search returns -1 if not found. Change it to:

x[i].kotakab.search(expression) !== -1

https://jsfiddle.net/vgrj1L80/124/


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...