我有一些关于数据表分页的问题。第一页 ajax 工作,但当第二页 ajax 不工作:( 这是我的示例代码
这是我的数据表脚本
$(document).ready(function () {
$('#my-table2').dataTable({
"sPaginationType": "full_numbers",
"aaSorting": [[ 0, "asc" ]],
bSort: false,
});
});
然后是 AJAX 代码
$(document).ready(function() {
$(".remove_edot").click(function(){
e.preventDefault();
var href = $(this).attr("href");
var btn = this;
if (confirm('Are you sure you want to delete this?')) {
$.ajax({
type: "GET",
url: href,
dataType: 'json',
success: function(response) {
if (response.status === "success"){
$(btn).closest('tr').fadeOut("slow");
}
else{
alert("Error");
}
}
});
return false;
}
});
});
请帮忙