getJson +叽叽喳喳
我不太热衷于编程,但我一直在尝试编辑一个基本代码与另一个基本代码以显示多于 1 条推文,但它不起作用,有人可以帮助我吗?
$.getJSON("http://twitter.com/status/user_timeline/user.json?count=3&callback=?",
function(data) {
$("#tweet").html(data[0].text);
});
谢谢!
Im not that much into programation but I've been trying to edit a base code one with another ones to display more than 1 tweet but it dosen't work, could anyone help me?
$.getJSON("http://twitter.com/status/user_timeline/user.json?count=3&callback=?",
function(data) {
$("#tweet").html(data[0].text);
});
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
data
是一个数组。因此data[0]
访问从 twitter 返回的第一条推文。您需要迭代该数组并将其他推文附加到您的 div 中。
编辑:将选择器更改为目标
#twitter
div 并向每条推文添加tweet
类。data
is an array. Sodata[0]
accesses the first tweet returned from twitter.You need to iterate over the array and append the other tweets to your div.
Edit: Changed selector to target
#twitter
div and add atweet
class to each tweet.