我正在使用这种方法来刷新用户上传的内容,但我看到Twitter facebook实际上并没有遵循这种类型的过程......他们会在插入数据后自动刷新内容或自动更新唯一的内容他们的数据库。
它是如何可能的,因为我在twitter的过程中通过inspect元素看到没有运行后台脚本或任何ajax挂起请求!!
这种类型的脚本被称为什么?
$(document).ready(function(){
display();
}
);
function display(){
$.ajax({
type:"GET",
url:"display.php",
async:true,
cache:true,
timeout:1000,
success:
function(data){
$('#display_content').html(data);
setTimeout(display,100000);
}
}
);
}
;