前端页面定时向后台发送json请求


function getUserCount() {
$.getJSON(pagePath + '/getUserCount.do', function(data) {
....
setTimeout(function() {
getUserCount();
}, 3 * 60 * 1000);
});
}

你可能感兴趣的:(jquery)