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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…