我正在尝试在用户点击评论的提交按钮时触发发布请求。现在单击提交按钮不会触发任何内容,我甚至尝试使用console.log($(this))我没有输出。下面的第一个代码是jQuery事件代码和ajax代码。下面的代码块是html按钮。谢谢您的帮助。
$('#submitComment').on('click', '#content', function() {
$.ajax({
url: 'http://localhost:3000/comments',
type: 'POST',
data: data = { comment: {
body: $(this).find('input[name="createComment"]').val(),
user_id: 1,
image_set_id: 2}
}
}).done(function(response) {
console.log(response);
});
});
我试图用jQuery事件定位的按钮
<div class="container">
<div id="content">
//the code between comments is in a Handelbar template
<input name="createComment">
<button type="submit" id="submitComment">Create Comment</button>
//end of handelbar template
</div>
</div>
答案 0 :(得分:1)
您需要将委派的处理程序绑定到目标元素(#content
)的祖先(submitComment
)
$('#content').on('click', '#submitComment', function () {
$.ajax({
url: 'http://localhost:3000/comments',
type: 'POST',
data: data = {
comment: {
body: $(this).find('input[name="createComment"]').val(),
user_id: 1,
image_set_id: 2
}
}
}).done(function (response) {
console.log(response);
});
});