您好我正在制作一个“论坛”,用户可以在其中提交帖子并显示。我想选择添加评论。
我正在做客户端的一切。
以下是生成论坛的代码:
$.get(url, page, function(data){
$("#forum").html("");
for(var i in data)
{
$("#forum").append(buildForumEntry(data[i]));
}
});
// Builds the forum entry
function buildForumEntry(post)
{
var titleAndType = '<div><span class="forum-title">'+post.title+'</span>'+buildType(post.type)+'</div>';
var author = "<div class=\"forum-author\">By: "+post.author+" on "+formatDate(post.date)+"</div>";
var body = "<pre>"+post.body+"</pre>";
var comment = "<div class=\"forum-comment\"> <div class=\"btn-group\"><a class=\"btn btn-mini btn-primary\" role=\"button\" data-toggle=\"modal\" id=\"btn-forum-comment\"><i class=\"icon-comment icon-white\"></i> comment</a></div></div>";
var footer = "<hr style=\"border-top: 1px dotted #b0b0b0;border-bottom: 0px\">";
var entry = titleAndType+author+body+comment+footer;
return entry;
}
我怎么能这样做,所以当我点击评论btn时我会抓住帖子的一些信息?同样在这个方法中调用:
// Button comment
$("#btn-forum-comment").click(function() {
alert("clicked");
});
这不会起作用,因为有超过1种类型的“id = btn-forum-comment”。我应该上课吗?如果是这样,我如何获取帖子标题的更多实例,以便当我发布到我的服务器时,我可以更新正确的条目。
更新:类无法从生成的论坛中运行。按钮单击不会被触发。有什么想法吗?
var comment = '<div class="btn-group"><a class="btn btn-mini btn-primary btn-forum-comment" id="btn-forum-comment-'+post._id+'"><i class="icon-comment icon-white"></i> comment</a></div>';
// Button comment
$(".btn-forum-comment").click(function() {
// now you know the id of clicked comment, so you can rewrite this with code which will open a form to answer exactly this comment
console.log("clicked");
alert($(this).attr('id')+" clicked");
});
我遇到点击问题,我认为它必须对动态加载做些什么。我将该类应用于硬编码的html,它的工作原理。但不是动态的感谢。
UPDATE2:为将来的用户更新。我需要使用委托函数
$("#forum").delegate(".btn-forum-comment", "click", function() {
console.log("clicked");
alert($(this).attr('id')+" clicked");
});
答案 0 :(得分:1)
你应该在btn的id中使用帖子的ID,你的post
对象应该有这样一个字段post.id
(它将包含数据库中帖子的唯一ID)
也可以使用该类访问所有按钮
<a class=\"btn btn-mini btn-primary btn-forum-comment-class\" ... id=\"btn-forum-comment-"+post.id+"\">
和点击事件:
// Button comment
$(".btn-forum-comment-class").click(function() {
// now you know the id of clicked comment, so you can rewrite this with code which will open a form to answer exactly this comment
alert($(this).attr('id')+" clicked");
});
答案 1 :(得分:1)
在按钮中添加一个类:
<a class=\"btn btn-mini btn-primary btn-forum-comment\" ... id=\"btn-forum-comment-"+post.id+"\">
和帖子的课程
var entry = "<div class='post'>"+ titleAndType+author+body+comment+footer + "</div>";
您的事件处理程序:
$(".btn-forum-comment").click(function() {
var post = $(this).parents(".post"); //the post of this clicked button
//from there you can access title, author,... of this post.
var title = post.find(".forum-title");
});
通过这种方法,您将能够访问所单击按钮的正确标题,作者.. ..
答案 2 :(得分:1)
是的,请使用课程。
另外,您应该将每个条目包装在容器div中。如果需要,这将帮助您访问论坛条目的其他部分。
html(为简洁而简化):
<div class="forum-entry" data-id="1234">
<div><span class="forum-title">blah blah</span>...</div>
<pre>post body...</pre>
<div class="forum-comment">
<div class="btn-group">
<a class="btn btn-mini btn-primary btn-forum-comment">comment</a>
</div>
</div>
<hr />
</div>
的javascript:
$('.btn-forum-comment').click(function(ev) {
ev.preventDefault();
var $forumEntry = $(this).closest('.forum-entry'); // this will get you a handle to the forum entry. from there, you can access other parts of the entry
var forumEntryId = $forumEntry.data('id');
alert('add a comment to forum entry ID ' + forumEntryId);
// etc...
});