我有一个应用程序,您可以将其设想为Facebook评论系统,其中的帖子,该帖子的评论以及发布评论的新文本区域。
示例 -
post1.. All comments for that post.. text area for new comment
post2.. All comments for that post.. text area for new comment
post3.. All comments for that post.. text area for new comment
。
我的问题是,当我发布新的评论时,它会在文本区域后附加。我想在文本区域之前发布评论以及所有评论。我应该如何使用JQuery append方法来实现此功能。
提前致谢。萨普纳
您可以参考此网址。http://wowopage.in/cgi-bin/requests.pl 尝试回复任何请求您将得到确切的问题。 要提供响应,您必须登录。请使用我的凭据。 sapnakool4u@gmail.com和passs- sapna
答案 0 :(得分:2)
选择textarea
并使用jQuery before。 E.g:
$('#post1 textarea').before(stringWithNewComments);
(因为您还没有发布整个html,所以选择器只是一个示例,您必须更新它。)
答案 1 :(得分:0)