这是代码..
$.ajax({
type: "POST",
url: "<?php echo rootpath()?>/show.php",
data: {
'url': url,
'type': 'rawdata'
},
cache: false,
dataType: "json",
success: function(data) {
$('#preloader').fadeOut('slow', function() {
$(this).remove();
});
alert(data);
}
})
数据将被加载到背景上,我通过警告只有fadeout功能有时会工作..并不总是
答案 0 :(得分:1)
替换为hide()
$.ajax({
type: "POST",
url: "<?php echo rootpath()?>/show.php",
data: {
'url': url,
'type': 'rawdata'
},
cache: false,
dataType: "json",
success: function(data) {
$('#preloader').fadeOut('slow', function() {
$(this).hide();
});
alert(data);
}
})