在此页面上:http://friendsconnect.org/chat/您可以看到一个非常简单的聊天。我怎么能拥有它,这样每次调用ajax时图像都不会闪烁?
使用Javascript:
function execute_check(){
$.ajax({
type:'GET',
url: 'chat.php',
success: function(data){
$("#container").html(data);
}
});
setTimeout(execute_check, 2000);
}
答案 0 :(得分:3)
不要发送图片并仅更新内容。