我目前正在使用这个
$('#message').load('/searchresult.php<? echo $requeststring; ?>', function() {
$('#searching').hide();
});
加载带有搜索结果的页面,但是速度很慢,因为在加载图像之前它也不会显示。如何在加载 DOM 后立即显示 searchresult 的内容?
我目前正在使用这个
$('#message').load('/searchresult.php<? echo $requeststring; ?>', function() {
$('#searching').hide();
});
加载带有搜索结果的页面,但是速度很慢,因为在加载图像之前它也不会显示。如何在加载 DOM 后立即显示 searchresult 的内容?
在评论之后,我认为问题可能出在你里面有一个回调函数.load()
,所以你可以试试这个:
$('#message').load(function() {
$.ajax({
type: "GET",
url: '/searchresult.php<? echo $requeststring; ?>',
success: function (result) {
$('#searching').html(result);
}
});
});
PS jQuery API 文档说If a "complete" callback is provided, it is executed after post-processing and HTML insertion has been performed. The callback is fired once for each element in the jQuery collection, and this is set to each DOM element in turn.
(http://api.jquery.com/load/)
PPS 我的猜测是,由于每个函数一次处理一个的方式,这需要时间。