且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在Phonegap InAppBrowser中显示加载指示器

更新时间:2023-12-05 17:37:22

您可以在hidden模式下打开InAppBrowser,同时显示微调器,完成加载后隐藏微调器并显示InAppBrowser:

You can open InAppBrowser in hidden mode, meanwhile display a spinner, and when it finishes loading hide the spinner and show the InAppBrowser:

showSpinner() // implement by yourself
var popup = window.open(url, "_blank", "location=no,toolbar=no,hidden=yes");
popup.addEventListener("loadstop", function() {
  popup.show();
  hideSpinner(); // implement by yourself
});