我如何setTimeout
在这里发挥作用:
function loadContent(url){
jQuery(".post").fadeTo(200,0.5);
jQuery("#container").load(href + ' .posts', function(responseHtml){
var newTitle = jQuery(responseHtml).filter('title').text();
document.title = newTitle;
});
}
我尝试过这样的事情,但它不起作用:
setTimeout(function(){
jQuery("#container").load(href + ' .posts', function(responseHtml){
var newTitle = jQuery(responseHtml).filter('title').text();
document.title = newTitle;
});
}, 1000);
我没有收到任何错误。