如何在页面重定向后调用ajax请求?我尝试使用setInterval函数,但它不起作用。
$("#list").on('click', 'tr', function () {
var data = table.row( this ).data();
var id = data[0];
var url = 'redirect.html?=id';
window.location.href = url + id;
return false;
var getRequest = setInterval (function(id) {
$.ajax({url: "/list?id=" + id,
contentType: 'application/json; charset=utf-8',
type: 'GET',
dataType: 'json',
error: function (xhr, status) {
alert(status);
},
success: function (listsdata) {
oTable = $('#table2').DataTable({
data: listsdata,
columns: [
{ title: "Column1" },
{ title: "Column2" },
]
});
}
});
}, 3000);
});
getRequest()
方法无法执行