你好,我目前正在一個「論壇」中,用戶可以提交後,將被顯示出來。我想要給它添加評論的選項。jQuery的如何添加註釋後
我做的一切客戶端。
這裏是生成論壇代碼:
$.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");
});
這不會工作,因爲有超過100種「ID = BTN-論壇 - 評論」的。我應該使用班級嗎?如果是的話我怎麼攫取更多實例的文章的標題,這樣,當我張貼到我的服務器我可以更新正確的條目。
UPDATE:類不從產生的論壇工作。按鈕點擊沒有被觸發。有任何想法嗎?
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");
});
絕對使用類,ID是獨一無二的! – tymeJV
我從來沒有使用類,我會怎麼做呢?並從點擊的帖子中獲取信息? – Jareddlc
如果你的id不是唯一的,你會遇到很大的問題,你應該確保所有的id在你的html中都是唯一的。 – Hogan