当我点击我的分页器链接时,我想显示一个加载栏。分页器通过 ajax 函数。当我使用 mozila 时,它会显示加载栏。但是当我使用 chrome,safari 时它没有显示加载栏
我的加载栏是一个 div,它出现在我的 index.php 文件中。
<div class="loading_wrapper" id="loading_wrapper" style="display:none;">
<div class="load_animation"><img src="/magsonwink/images/loadinfo.gif" width="24" height="24" /></div>
<div class="load_texts"><h4>Loading...</h4></div>
<div class="clear"></div>
分页器链接也存在于 index.php 文件中。当我单击分页器链接时,这将转到该功能
var resp_msg =
$.ajax({
url: path + set_page,
async: false,
beforeSend: function() {
$('#loading_wrapper').show();
},
success: function(data, result) {
if (!result)
alert('Failure to set the value.');
}
}).responseText;
if (resp_msg) {
$('#loading_wrapper').hide();
$(objReplace).html(resp_msg);
}
这在 mozila 中运行良好,但在 chrome 中却没有。当我查看错误控制台时没有显示错误。请帮助我。提前致谢