我想使用ajax刪除mysql的記錄。一切工作正常。但我也想添加加載到按鈕,當我點擊垃圾按鈕。下面是我的按鈕鏈接引導按鈕加載ajax
<a href="#" id="delpost" data-id="'.$row['id'].'" class="btn btn-default pull-right" title="Delete"><i class="fa fa-trash-o"></i></a>
以下是我的ajax
$(function() {
$('body').on('click', '#delpost', function() {
var del_id = $(this).attr("data-id");
var info = 'id=' + del_id;
var parent = $(this).closest('li');
var btn = $(this);
btn.button('loading');
if (confirm("Sure you want to delete this Post? There is NO undo!")) {
$.ajax({
type: "POST",
url: "/delete-post.php",
data: info,
beforeSend: function() {
parent.animate({
'backgroundColor': '#fb6c6c'
}, 300);
},
success: function() {
btn.button('reset');
parent.slideUp(300, function() {
parent.remove();
});
}
});
}
return false;
});
});
對不起,哪裏是問題嗎? – WhoAmI
你可以使用像[這](http://msurguy.github.io/ladda-bootstrap/) –