jquery设定时间请求
文章描述:
jQuery设置时间连续执行
//假设每隔5秒发送一次请求
window.onload = function() {
getApi();
}
function getApi() {
//设置时间 5-秒 1000-毫秒 这里设置你自己想要的时间
setTimeout(getApi, 5 * 1000);
$.ajax({
url: 'http://localhost/str.php',
type: 'get',
dataType: 'json',
success: function(data) {
//方法中传入的参数data为后台获取的数据
console.log('0');
}
})
}
发布时间:2021/07/15
发表评论