如何在 jQueryMobile 中使用 pageLoading 阻止 UI

发布于 2024-10-30 17:05:13 字数 62 浏览 1 评论 0原文

使用 $.mobile.pageLoading(false) 时是否可以阻止 UI?

Is it possible to block the UI when using $.mobile.pageLoading(false)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玻璃人 2024-11-06 17:05:13

jQueryMobile Alpha 1.0a4.1 中未实现此功能。

我解决了添加一个具有足够高 z-index 的覆盖 div 的问题。

JS:

$(document).ready(function () {         
    $('body').append('<div id="block-ui"></div>');      

    $('#ajax_request').click(function(){        
        $('#block-ui').show();
        $.mobile.pageLoading(false);
    });
});

CSS:

#block-ui {
    display: none;
    cursor: wait;
    position: absolute;
    top: 0px;
    left: 0px;  
    width: 100%;
    height: 100%;
    z-index: 9; 
    background-color: #CCCCCC;
    opacity: 0.5;
}

如果您使用固定条,则需要覆盖 z-index 值:

.ui-header-fixed, .ui-footer-fixed {
    z-index: 8 !important;
}

This feature isn't implemented in jQueryMobile Alpha 1.0a4.1.

I solved the problem adding a overlay div with high enough z-index.

JS:

$(document).ready(function () {         
    $('body').append('<div id="block-ui"></div>');      

    $('#ajax_request').click(function(){        
        $('#block-ui').show();
        $.mobile.pageLoading(false);
    });
});

CSS:

#block-ui {
    display: none;
    cursor: wait;
    position: absolute;
    top: 0px;
    left: 0px;  
    width: 100%;
    height: 100%;
    z-index: 9; 
    background-color: #CCCCCC;
    opacity: 0.5;
}

If you're using using fixed-bars you need to override z-index value:

.ui-header-fixed, .ui-footer-fixed {
    z-index: 8 !important;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文