如何迭代JavaScript对象并在指定位置显示结果?
我有对象 replies
:
[Object { content="Comment #1."}, Object { content="Comment #2."}]
并且我有选择器来选择内容应放置的位置...
$('.post .comment_this[rel="3"]').parent().parent().append(encoded.content + '<br />');
如何迭代该对象并在该位置一一显示结果?
I have object replies
:
[Object { content="Comment #1."}, Object { content="Comment #2."}]
And I have selector that selects place where content should be placed...
$('.post .comment_this[rel="3"]').parent().parent().append(encoded.content + '<br />');
How to iterate over that object and display results in that place one by one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
replies
是一个数组,您可以使用简单的for
循环:replies
is an array, you can use a simplefor
loop:http://api.jquery.com/each/
假设
var replies = [{ content :"Comment #1."}, { content:"Comment #2."}];
你可以使用类似这样的 演示这里
http://api.jquery.com/each/
Assuming
var replies = [{ content:"Comment #1."}, { content:"Comment #2."}];
you can use something like this DEMO HERE