我正在使用 phonegap 创建 jquery 移动应用程序,当我触发 ajax 请求时,我正在显示 ajax 加载微调器,它在 Firefox 中运行良好,但它没有提供 chrome、模拟器和真正的 android 移动设备。
下面是我正在使用的代码
$(document).on("pageinit","#agenda2",function(){
$.mobile.loading('show', {
text: 'Please wait',
textVisible: true,
theme: 'a',
html: ""
});
// Code for ajax request goes here
});