我知道您可以使用 ajax 刷新,定期拉动,给定一个计时器。但是,如何设置页面仅在服务器端触发/发生 http 请求时才更新?
所以你通常会这样做
定期页面更新:
// Use a named immediately-invoked function expression.
(function worker() {
$.get('ajax/test.html', function(data) {
// Now that we've completed the request schedule the next one.
$('.result').html(data);
setTimeout(worker, 5000);
});
})();
事件驱动页面更新:(仅当服务器发送响应时)
问题:你会怎么做?这可能吗?