jquery mobile 1.4+ 调用和关闭loading
$.mobile.loading('show', {
text: '加载中……', //加载器中显示的文字
textVisible: false, //是否显示文字
theme: 'a', //加载器主题样式a-e
textonly: false, //是否只显示文字
html: '' //要显示的html内容,如图片等
});
$.mobile.loading('hide');
