在帧中加载内容时显示加载指示符

时间:2009-09-18 17:35:57

标签: asp.net javascript jquery html

在帧中加载内容时显示加载指示器的代码 1)当回复/提交发生在iframe内的表单

1 个答案:

答案 0 :(得分:4)

您可以按以下方式绑定到ajaxStartajaxStop global (ajax) events

$("#loading").bind("ajaxStart", function(){
    $(this).fadeIn("slow");
}).bind("ajaxStop", function(){
    $(this).fadeOut("slow");
});

假设loading是您的加载指标div / span的ID。

如果您想要更漂亮的解决方案,请查看精彩的blockUI插件。使用blockUI相当于上面的内容:

$().ajaxStart($.blockUI)
   .ajaxStop($.unblockUI);