0

$.mobile.loading在以下函数中使用 jQuery 的函数:

 function showLoading(msg) {
    setTimeout(function(){
        $.mobile.loading( 'show', {
    text: msg,
    textVisible: true,
    theme: 'b',
    html: ""
        });
}, 1);

有时加载器在后台,因为 div 在它上面。我怎样才能将它设置z-index得非常高,或者做其他事情来确保它总是在一切之上?

4

2 回答 2

1

使用.ui-loader类呢?

把它放在你的 CSS 文件中:

.ui-loader {
    z-index: 9999;
}
于 2013-08-31T07:37:22.820 回答
0

你可以使用 .css 函数来改变它,例如:

$("#foo").css('z-index','2000');

参考

于 2013-08-31T07:48:19.320 回答