先生,我使用$.post
了获取用户信息的方法,并在回调函数中得到:
<img id=$id src='img/user.jpg' width=60; height=60; /> //from fetch.php
html()
当我用 5s 间隔把它放在 jquery上时:
setInterval(function(){
$.post('php/fetch.php',
{usr:1},
function(info2){
if(info2!='10' && info2 != ''){
$('#regu').html(info2); }); },5000);
然后在输出中,我得到了用户信息,但由于每次加载间隔,我在 5 秒后闪烁或刷新图像,我只想删除图像的闪烁或刷新。请帮我解决这个问题。
看到问题:看到我的问题:(