在原型中,我可以使用以下代码显示"正在加载..."图像:
1 2 3 4 5 6
| var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars,
onLoading: showLoad, onComplete: showResponse} );
function showLoad () {
...
} |
在jQuery中,我可以使用以下命令将服务器页面加载到元素中:
1
| $('#message').load('index.php?pg=ajaxFlashcard'); |
但是如何像在Prototype中一样将加载微调器附加到此命令?
有两种方法。我的首选方法是将一个函数附加到元素本身上的ajaxStart / Stop事件。
1 2 3 4 5 6 7 8 9
| $('#loadingDiv')
.hide() // Hide it initially
.ajaxStart(function() {
$(this).show();
})
.ajaxStop(function() {
$(this).hide();
})
; |
每当您执行任何Ajax调用时,ajaxStart / Stop函数都会触发。
更新:从jQuery 1.8开始,文档指出.ajaxStart/Stop仅应附加到document。这会将上面的代码段转换为:
1 2 3 4 5 6 7 8
| var $loading = $('#loadingDiv').hide();
$(document)
.ajaxStart(function () {
$loading.show();
})
.ajaxStop(function () {
$loading.hide();
}); |
对于jQuery,我使用
1 2 3 4 5 6 7 8 9
| jQuery.ajaxSetup({
beforeSend: function() {
$('#loader').show();
},
complete: function(){
$('#loader').hide();
},
success: function() {}
}); |
您可以只使用jQuery的.ajax函数并使用其选项beforeSend并定义一些函数,在其中可以显示类似loader div的内容,而在成功选项中可以隐藏该loader div。
1 2 3 4 5 6 7 8 9 10 11
| jQuery.ajax({
type:"POST",
url: 'YOU_URL_TO_WHICH_DATA_SEND',
data:'YOUR_DATA_TO_SEND',
beforeSend: function() {
$("#loaderDiv").show();
},
success: function(data) {
$("#loaderDiv").hide();
}
}); |
您可以具有任何Spinning Gif图像。这是一个根据您的配色方案是出色的AJAX Loader Generator的网站:http://ajaxload.info/
您可以在AJAX调用之前将动画图像插入DOM中,并执行内联函数将其删除...
1 2 3 4
| $("#myDiv").html('<img src="images/spinner.webp" alt="Wait" />');
$('#message').load('index.php?pg=ajaxFlashcard', null, function() {
$("#myDiv").html('');
}); |
这将确保您的动画在后续请求中从同一帧开始(如果重要)。请注意,旧版本的IE可能在动画方面存在困难。
祝好运!
1 2 3 4 5 6 7
| $('#message').load('index.php?pg=ajaxFlashcard', null, showResponse);
showLoad();
function showResponse() {
hideLoad();
...
} |
http://docs.jquery.com/Ajax/load#urldatacallback
如果您使用的是$.ajax(),则可以使用以下内容:
1 2 3 4 5 6 7 8 9 10
| $.ajax({
url:"destination url",
success: sdialog,
error: edialog,
// shows the loader element before sending.
beforeSend: function () { $("#imgSpinner1").show(); },
// hides the loader after completion of request, whether successfull or failor.
complete: function () { $("#imgSpinner1").hide(); },
type: 'POST', dataType: 'json'
}); |
使用加载插件:http://plugins.jquery.com/project/loading
1
| $.loading.onAjax({img:'loading.webp'}); |
变体:我在主页的左上方有一个带有id =" logo"的图标;然后,当ajax工作时,微调gif会覆盖在顶部(透明)。
1 2 3 4 5 6 7 8 9
| jQuery.ajaxSetup({
beforeSend: function() {
$('#logo').css('background', 'url(images/ajax-loader.webp) no-repeat')
},
complete: function(){
$('#logo').css('background', 'none')
},
success: function() {}
}); |
最后,我对原始回复进行了两项更改。
从jQuery 1.8开始,ajaxStart和ajaxStop应该仅附加到<??x1>。这使得仅过滤一些ajax请求变得更加困难。 o
切换到ajaxSend和ajaxComplete可以在显示微调器之前检查当前的ajax请求。
这些更改之后的代码是:
1 2 3 4 5 6 7 8 9 10
| $(document)
.hide() // hide it initially
.ajaxSend(function(event, jqxhr, settings) {
if (settings.url !=="ajax/request.php") return;
$(".spinner").show();
})
.ajaxComplete(function(event, jqxhr, settings) {
if (settings.url !=="ajax/request.php") return;
$(".spinner").hide();
}) |
我也想为这个答案做贡献。我一直在寻找与jQuery类似的东西,而最终我使用了这个东西。
我从http://ajaxload.info/获得了加载微调器。我的解决方案基于以下简单答案:http://christierney.com/2011/03/23/global-ajax-loading-spinners/。
基本上,您的HTML标记和CSS如下所示:
1 2 3 4 5 6 7 8
| <style>
#ajaxSpinnerImage {
display: none;
}
</style>
<img src="~/Content/ajax-loader.webp" id="ajaxSpinnerImage" title="working..." /> |
然后,您的jQuery代码将如下所示:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| $(document).ready(function () {
$(document)
.ajaxStart(function () {
$("#ajaxSpinnerImage").show();
})
.ajaxStop(function () {
$("#ajaxSpinnerImage").hide();
});
var owmAPI ="http://api.openweathermap.org/data/2.5/weather?q=London,uk&APPID=YourAppID";
$.getJSON(owmAPI)
.done(function (data) {
alert(data.coord.lon);
})
.fail(function () {
alert('error');
});
}); |
它是如此简单 :)
您可以简单地将加载程序映像分配给同一标签,稍后使用Ajax调用在该标签上加载内容:
1 2 3
| $("#message").html('<span>Loading...</span>');
$('#message').load('index.php?pg=ajaxFlashcard'); |
您也可以将span标签替换为image标签。
除了为ajax事件设置全局默认值之外,还可以为特定元素设置行为。也许仅仅改变他们的班级就足够了吗?
1 2 3 4 5 6
| $('#myForm').ajaxSend( function() {
$(this).addClass('loading');
});
$('#myForm').ajaxComplete( function(){
$(this).removeClass('loading');
}); |
CSS示例,使用微调器隐藏#myForm:
1 2 3 4 5 6 7 8 9 10 11
| .loading {
display: block;
background: url(spinner.webp) no-repeat center middle;
width: 124px;
height: 124px;
margin: 0 auto;
}
/* Hide all the children of the 'loading' element */
.loading * {
display: none;
} |
请注意,必须使用异步调用来使微调器起作用(至少这是导致我的问题直到ajax调用之后才显示,然后随着调用结束并移除微调器而迅速消失的原因)。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| $.ajax({
url: requestUrl,
data: data,
dataType: 'JSON',
processData: false,
type: requestMethod,
async: true, <<<<<<------ set async to true
accepts: 'application/json',
contentType: 'application/json',
success: function (restResponse) {
// something here
},
error: function (restResponse) {
// something here
}
}); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| $('#loading-image').html('<img src="/images/ajax-loader.webp"> Sending...');
$.ajax({
url: uri,
cache: false,
success: function(){
$('#loading-image').html('');
},
error: function(jqXHR, textStatus, errorThrown) {
var text = "Error has occured when submitting the job:"+jqXHR.status+" Contact IT dept";
$('#loading-image').html('<span style="color:red">'+text +' </span>');
}
}); |
我在jQuery UI对话框中使用了以下内容。 (也许它可以与其他ajax回调一起使用?)
1 2 3 4 5
| $('<img src="/i/loading.webp" id="loading" />').load('/ajax.html').dialog({
height: 300,
width: 600,
title: 'Wait for it...'
}); |
包含一个动画加载gif,直到ajax调用完成后其内容被替换。
这对我来说是最好的方法:
jQuery的:
1 2 3 4 5 6 7
| $(document).ajaxStart(function() {
$(".loading").show();
});
$(document).ajaxStop(function() {
$(".loading").hide();
}); |
咖啡:
1 2 3 4 5
| $(document).ajaxStart ->
$(".loading").show()
$(document).ajaxStop ->
$(".loading").hide() |
文件:ajaxStart,ajaxStop
的JavaScript
1 2 3 4 5 6 7
| $.listen('click', '#captcha', function() {
$('#captcha-block').html('');
$.get("/captcha/new", null, function(data) {
$('#captcha-block').html(data);
});
return false;
}); |
的CSS
1
| #loading { background: url(/image/loading.webp) no-repeat center; } |
这是一个非常简单而聪明的插件,用于特定目的:
https://github.com/hekigan/is-loading
我的ajax代码看起来像这样,实际上,我刚刚注释掉了async:错误的行,并且显示了spinner。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| $.ajax({
url:"@Url.Action("MyJsonAction","Home")",
type:"POST",
dataType:"json",
data: {parameter:variable},
//async: false,
error: function () {
},
success: function (data) {
if (Object.keys(data).length > 0) {
//use data
}
$('#ajaxspinner').hide();
}
}); |
我在ajax代码之前的函数中显示微调器:
1 2
| $("#MyDropDownID").change(function () {
$('#ajaxspinner').show(); |
对于HTML,我使用了很棒的字体类:
希望它可以帮助某人。
如果您不想编写自己的代码,那么还有很多插件可以做到这一点:
-
https://github.com/keithhackbarth/jquery-loading
-
http://plugins.jquery.com/project/loading
我这样做:
1 2 3 4 5 6 7 8 9
| var preloaderdiv = 'Loading...';
$('#detail_thumbnails').html(preloaderdiv);
$.ajax({
async:true,
url:'./Ajaxification/getRandomUser?top='+ $(sender).css('top') +'&lef='+ $(sender).css('left'),
success:function(data){
$('#detail_thumbnails').html(data);
}
}); |
如果您打算在每次发出服务器请求时都使用加载程序,则可以使用以下模式。
1 2 3 4 5 6 7
| jTarget.ajaxloader(); // (re)start the loader
$.post('/libs/jajaxloader/demo/service/service.php', function (content) {
jTarget.append(content); // or do something with the content
})
.always(function () {
jTarget.ajaxloader("stop");
}); |
该代码特别使用了jajaxloader插件(我刚刚创建)
https://github.com/lingtalfi/JAjaxLoader/
我想你是对的。
此方法过于全局...
但是-当您的AJAX调用对页面本身没有影响时,这是一个很好的默认设置。 (例如后台保存)。 (您始终可以通过传递" global"将其关闭以进行某些ajax调用:false-请参阅jquery中的文档
当AJAX调用用于刷新页面的一部分时,我喜欢我的"加载"图像特定于刷新的部分。我想看看哪一部分刷新了。
想象一下,如果您可以简单地编写类似以下内容,那将是多么酷:
1
| $("#component_to_refresh").ajax( { ... } ); |
这将在此部分显示"正在加载"。
下面是我编写的一个函数,该函数也可以处理"加载"显示,但是它特定于您要在Ajax中刷新的区域。
首先,让我告诉你如何使用它
1 2 3 4 5 6 7 8 9 10 11
| <!-- assume you have this HTML and you would like to refresh
it / load the content with ajax -->
<span id="email" name="name" class="ajax-loading">
</span>
<!-- then you have the following javascript -->
$(document).ready(function(){
$("#email").ajax({'url':"/my/url", load:true, global:false});
}) |
这就是功能-您可以根据需要增强的基本起点。这是非常灵活的。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
| jQuery.fn.ajax = function(options)
{
var $this = $(this);
debugger;
function invokeFunc(func, arguments)
{
if ( typeof(func) =="function")
{
func( arguments ) ;
}
}
function _think( obj, think )
{
if ( think )
{
obj.html(' Loading ... ');
}
else
{
obj.find(".loading").hide();
}
}
function makeMeThink( think )
{
if ( $this.is(".ajax-loading") )
{
_think($this,think);
}
else
{
_think($this, think);
}
}
options = $.extend({}, options); // make options not null - ridiculous, but still.
// read more about ajax events
var newoptions = $.extend({
beforeSend: function()
{
invokeFunc(options.beforeSend, null);
makeMeThink(true);
},
complete: function()
{
invokeFunc(options.complete);
makeMeThink(false);
},
success:function(result)
{
invokeFunc(options.success);
if ( options.load )
{
$this.html(result);
}
}
}, options);
$.ajax(newoptions);
}; |
您始终可以使用Block UI jQuery插件来为您完成所有工作,甚至在加载Ajax时也阻止任何输入的页面。如果插件似乎无法正常工作,您可以在此答案中了解正确的使用方式。一探究竟。