admin管理员组文章数量:1344241
I have a loading div or loader that should show up during Ajax Requests.
$('#loadingDiv').ajaxStart(function () {
$(this).show();
}).ajaxComplete(function () {
$(this).hide();
});
I want the loader to show up during all Ajax Requests, but prevent it on a particular request.
I tried the following:
$.ajax({
url: 'Handler.ashx',
success: function (msg, status, xhr) {
$('#loadingDiv').hide();
}.....
But the div shows up then disappears, I don't want it to show up at all.
I have a loading div or loader that should show up during Ajax Requests.
$('#loadingDiv').ajaxStart(function () {
$(this).show();
}).ajaxComplete(function () {
$(this).hide();
});
I want the loader to show up during all Ajax Requests, but prevent it on a particular request.
I tried the following:
$.ajax({
url: 'Handler.ashx',
success: function (msg, status, xhr) {
$('#loadingDiv').hide();
}.....
But the div shows up then disappears, I don't want it to show up at all.
Share Improve this question asked Aug 21, 2013 at 16:54 Ali BassamAli Bassam 9,97924 gold badges70 silver badges119 bronze badges4 Answers
Reset to default 8Set global
to false when making the request:
$.ajax({
url: 'Handler.ashx',
global: false,
...
});
See the Ajax.Events docs.
DEMO
Try this
$.ajax({
url: 'Handler.ashx',
beforeSend:function(){
if (<conditon>) /// check your condition here
$('#loadingDiv').show();
else
$('#loadingDiv').hide();
},
success: function (msg, status, xhr) {
$('#loadingDiv').hide();
}
});
Hope this helps,Thank you
Use global: false
in your Ajax options to make the request not trigger any global event handlers.
The $.ajax
docs say about the global
option:
Set to
false
to prevent the global handlers likeajaxStart
orajaxStop
from being triggered.
From the .ajaxStart
docs:
If
$.ajax()
... is called with theglobal
option set tofalse
, the.ajaxStart()
method will not fire.
$.ajax({
url: 'Handler.ashx',
beforesend:function(){
// apply your code
},
success: function (msg, status, xhr) {
$('#loadingDiv').hide();
}.....
reference ajax
本文标签: javascriptPrevent ajaxStart() from executing on a specific Ajax RequestStack Overflow
版权声明:本文标题:javascript - Prevent .ajaxStart() from executing on a specific Ajax Request - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743720917a2527551.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论