我有一个显示“删除”按钮操作的 Bootstrap 弹出窗口:
<a href="#" class='dd' rel="popover" data-content="<a href='#' class='removeNote btn' data-id='{{$note->id}}' >Remove</a>" data-original-title="Remove Note?"><i class='icon-remove'></i></a>
我希望删除操作“removeNote”调用删除 jQuery 代码块,但事实并非如此。如果我删除弹出框代码,它工作正常。有任何想法吗?
$(".removeNote").click(function() {
var id = $(this).data("id");
$.ajax({
type: 'DELETE',
url: '/note/' + id,
data: {
'id': id
},
success: function(msg) {
$(".note" + id ).fadeOut(500);
$(".poster" + id ).fadeOut(500);
}
});
});