HTML标记:
<ul>
<li class="entries"></li>
</ul>
jQuery代码:
$(function () {
$.ajax({
url: "http://query.yahooapis.com/v1/public/yql",
dataType: "jsonp",
success: function (data) {
console.log(data.query.results.json);
$.each(data.query.results.json.entries, function (i, v) {
$('#entries').append(data.query.results.json.entries[i].content + '<br />');
});
}, data: {
q: 'select * from json where url="https://www.facebook.com/feeds/page.php?id=397319800348866&format=json"',
format: "json"
}
});
});
我希望将输出视为一个菜单。当点击标题时,它也会显示内容和图像。我将如何使用jQuery和html执行此操作?
答案 0 :(得分:2)
为每个条目创建标题和内容元素,并在单击标题时切换内容元素的可见性:
使用Javascript:
$(function () {
$.ajax({
url: "http://query.yahooapis.com/v1/public/yql",
dataType: "jsonp",
success: function (data) {
console.log(data.query.results.json);
$.each(data.query.results.json.entries, function (i, v) {
$('#entries').append(
$('<div>').addClass('header')
.html(data.query.results.json.entries[i].title)
.append(
$('<div>').addClass('content')
.html(data.query.results.json.entries[i].content)
)
);
});
}, data: {
q: 'select * from json where url="https://www.facebook.com/feeds/page.php?id=397319800348866&format=json"',
format: "json"
}
});
$('#entries').on('click', '.header', function(){
$('.content', this).toggle();
});
});
CSS:
.header { margin: 5px; background: #eee; padding: 5px; }
.content { display: none; }