在链接外部网站时使用Jquery mobile加载popover。

时间:2011-12-25 04:16:00

标签: javascript jquery mobile jquery-mobile

我试图使用jquery mobile加载外部网站并加载png,这样只有外部网站页面加载后,加载png才会消失。

知道如何使用jquery mobile创建此效果吗?

1 个答案:

答案 0 :(得分:0)

您可以将函数绑定到ajax start,stop和error事件以显示您的png

// error with request
$(document).ajaxError(function (event, xhr, settings, error){
 // something went wrong
});

// show loading indicator
// when ajax requests start
$(document).ajaxStart(function (){
 showLoadingGraphic();
});

// remove loading indicator
// when ajax requests complete
$(document).ajaxStop(function (){
 hideLoadingGraphic();
});