设置`$ .mobile.loading`的z-index

时间:2013-08-31 07:10:31

标签: jquery

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

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

有时加载器在后台,因为div位于其上方。如何将z-index设置为真正高,或者做其他事情以确保它始终位于所有内容之上?

2 个答案:

答案 0 :(得分:1)

如何使用.ui-loader类?

将它放在您的CSS文件中:

.ui-loader {
    z-index: 9999;
}

答案 1 :(得分:0)

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

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

Reference