当链接外部网站时,用Jquery移动加载弹出窗口

Loading popover with Jquery mobile when linking an external website.

本文关键字:加载 移动 窗口 Jquery 外部 链接 网站      更新时间:2023-09-26

我试图使用jquery手机加载外部网站,并有一个加载png,这样只有一旦外部网站页面加载加载png消失。

任何想法如何创建这种效果与jquery移动?

您可以将函数绑定到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();
});