我想每5秒钟调用一次ajax。下面的代码显示了html一次但没有在每五秒后调用ajax。我是ajax的新手,请有人向我解释。
$(document).ready(function(){
function fresh_ajax(){
$.ajax({
type:"POST",
url:"pic.php",
success:function(html){
$('.a').empty();
$('.a').html(html).show();
}
});
}
window.setInterval(function(){
fresh_ajax();
}, 500);
});