有一个删除帖子的链接:
<a id="post_232_destroy" class="postDestroy" rel="nofollow" data-remote="true" data-method="delete" data-confirm="Are you sure?" href="/someurl">Delete</a>
javascript(从咖啡脚本编译):
function() {
jQuery(function() {
return $("a.postDestroy").bind("ajax:success", function(event, data) {
$('#post_' + data.post_id).remove();
}).bind("ajax:error", function() {
alert('Please try again');
});
});
}).call(this);
我正在通过 ajax 添加新帖子,因此对于最近添加的每个帖子,都缺少绑定到删除按钮。帖子被删除但 ajax:success 没有被调用,所以 div 没有被删除。我怎样才能再次绑定它?