我在以下函数中使用jQuery的$.mobile.loading
函数:
function showLoading(msg) {
setTimeout(function(){
$.mobile.loading( 'show', {
text: msg,
textVisible: true,
theme: 'b',
html: ""
});
}, 1);
有时加载器在后台,因为div位于其上方。如何将z-index
设置为真正高,或者做其他事情以确保它始终位于所有内容之上?
答案 0 :(得分:1)
如何使用.ui-loader
类?
将它放在您的CSS文件中:
.ui-loader {
z-index: 9999;
}
答案 1 :(得分:0)