我正在使用此ajax简单代码来刷新带有mySql结果的div。 工作,但这是正确的方法吗? 很少有连接就可以,但是有很多连接。...?
setInterval(function(){
$.ajax({
type: "GET",
url: "current_number.php",
dataType: 'html',
success: function(data) {
$("#current_number").html(""+data+"");
}
});
}, 500);
谢谢