根据this post,您可以保持与服务器的连接打开以侦听任何更改。 jQuery的$.get()
或$.ajax()
方法有什么可能的方法?
答案 0 :(得分:1)
最简单的方法是将AJAX调用放入函数中,然后创建一个间隔:
setInterval(ajaxCall, 300000); //300000 MS == 5 minutes
function ajaxCall() {
$.ajax({
url: 'fetch_details.php',
type: 'get',
success: function(response){
// Perform operation on the return value
alert(response);
}
});
}