【发布时间】:2013-08-05 07:55:08
【问题描述】:
我正在通过 JSON 对象创建一个包含一些图像、详细信息和搜索输入选项的页面。 我的问题是当我使用搜索选项时,它没有显示任何结果。但是,它在正常情况下会在页面上显示来自 JSON 的数据。
我也尝试过其他帖子,但没有运气。
Javascript search inside a JSON object
html代码:
<div class="wrapper">
<div class="header">Logo Name</div>
<div class="middle">
<div id="results"></div>
<div class="leftContainer">
</div>
<div class="rightContainer">
<input type="text" id="inputText" /> <input type="button" id="button" value="Search Data" />
</div>
</div>
<div class="footer">
© 2013 ABC. All rights reserved.
</div>
</div>
jQuery 代码: #button 点击下方会显示数据。
$(document).ready(function(){
$.getJSON('assets/js/sample.json', function(data){
var items = [];
$.each(data.latest, function() {
items.push("<h2>" + this['thumbTitle'] + "</h2>");
items.push("<ul><li>" + this['thumbSmall'] + "</li></ul>");
items.push("<p>" + this['description'] + "</p>");
});
$('<div />', {
html: items.join('')
}).appendTo('.leftContainer');
$('#button').on('click', function(data, name) {
name = $('#inputText').val().toUpperCase();
alert(name);
var results;
results = data.latest.filter(function() {
return data.latest.name.toUpperCase().indexOf(name) !== -1;
});
return $('#results').innerHTML() = results;
console.log(results);
});
});
});
JSON 数据:
{
"latest" :[
{
"thumbTitle":"Image Title1",
"thumbSmall" : ["<img src='assets/images/thumb1.jpg' alt='' />", "<img src='assets/images/thumb2.jpg' alt='' />"],
"description" : "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries."
},
{
"thumbTitle":"Image Title2",
"thumbSmall" : ["<img src='assets/images/thumb3.jpg' alt='' />", "<img src='assets/images/thumb2.jpg' alt='' />", "<img src='assets/images/thumb4.jpg' alt='' />", "<img src='assets/images/thumb1.jpg' alt='' />"],
"description" : "It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout."
},
{
"thumbTitle":"Image Title3",
"thumbSmall" : ["<img src='assets/images/thumb3.jpg' alt='' />", "<img src='assets/images/thumb2.jpg' alt='' />"],
"description" : "There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable."
},
{
"thumbTitle":"Image Title4",
"thumbSmall" : ["<img src='assets/images/thumb1.jpg' alt='' />"],
"description" : "The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham."
}
]
}
【问题讨论】:
-
注意:由于
data.latest是Array,因此您实际上并没有使用jQuery 的.filter(),而是Array's.filter()(browser compatibility)。对于过滤数据,jQuery 定义了jQuery.grep()。