我在每次登录时从MySQL数据库中获取$_SESSION[balance]
的值。如何在不每5分钟重新加载页面的情况下更新客户端浏览器中的值?我认为可以使用AJAX完成吗?
对不起,如果这太模糊了,我对于从哪里开始就完全不知道。
答案 0 :(得分:1)
你是对的,你需要AJAX。最简单的方法是将$.get();
与jQuery library
js / jQuery脚本
window.setInterval(function() {
$.get('script.php', function(balance) {
$('#balance').html(balance); // set the value to the element with the ID balance
});
}, 60000); // execute every minute
在script.php
中,您只需在数据库中查询余额并回显它