我有一个 jsp 页面,它会在 5 秒后定期刷新以显示最新数据。在此页面中,我正在调用 js 文件。使用 jquery ajax refresh 我可以刷新我的服务器端编码,但它不会影响页面。我想这是因为我的 java 脚本没有定期刷新。
请告诉我如何在 jquery ajax 刷新后调用 javascript。
下面是我用于 jquery java 脚本刷新的代码
<script>
(function worker() {
$.ajax({
url: 'http://localhost:8088Login.do',
success: function(data) {
// $("#refresh").html(data);
// alert(data);
},
complete: function() {
//alert("refresh");
//
// Schedule the next request when the current one's complete
setTimeout(worker, 5000);
}
});
})();
</script>