0

我正在构建一个基本的 jqm 页面,在页面末尾我得到一个带有“正在加载”文本的大标签。我看过很多答案,但没有人为我工作。我有这个 html 代码:

<!DOCTYPE html>
<html>
<head>
<title>StackMob JS SDK Examples</title>
    <link href="css/bootstrap.css" rel="stylesheet" type="text/css">
    <script type="text/javascript" src="cordova-1.9.0.js"></script>
    <script type="text/javascript" src="js/jquery.js"></script>
    <script type="text/javascript" src="js/jquery_migrate.js"></script>
    <script type="text/javascript" src="js/jquery_mobile.js"></script>
    <script type="text/javascript" src="js/main.js"></script>
    <script type="text/javascript" src="http://static.stackmob.com/js/stackmob-js-0.7.0-bundled-min.js"></script>   
    <script type="text/javascript">
        $(window).load(function(){
        $.mobile.hidePageLoadingMsg();
        });
    </script>
</head>
<body>
  <div data-role="page"> 
    <div data-role="header">...</div> 
    <input type="button" value="bbbb" id="bb">
    <div data-role="content">...</div> 
  <div data-role="footer">...</div> 
</body>
</html>

这在我的 main.js 文件中:

$(window).load(function(){
    $.mobile.hidePageLoadingMsg();
});


jQuery('document').ready(function() {
    $.mobile.hidePageLoadingMsg();
    jQuery('#bb').click(function(){
        $.mobile.hidePageLoadingMsg();  
    });
});

没有任何工作!谢谢!

4

2 回答 2

3

您需要在 mobileinit 事件期间执行此操作,如下所示:

<script type="text/javascript">
    $(document).bind('mobileinit',function(){
        $.mobile.loadingMessage = false;
    })
</script>  

还有一件事,这必须在加载 jQuery Mobile 之前完成,如下所示:

<head>
    <title>jQM Complex Demo</title>
    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script type="text/javascript">
        $(document).bind('mobileinit',function(){
            $.mobile.loadingMessage = false;
        })
    </script>    
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>    
</head>

这是一个 jsFiddle 示例:http: //jsfiddle.net/Gajotres/RwRx9/

更多相关信息可以在这里找到:http: //jquerymobile.com/demos/1.1.0/docs/api/globalconfig.html

于 2013-02-11T09:18:57.660 回答
1

如果要完全删除加载消息,可以设置一个全局属性

$.mobile.loadingMessage = false;

如果您想在页面级别执行此操作。将其绑定在“mo​​bileinit”函数中。

$("your page").on("pageinit", function(){
   // hide here
});
于 2013-02-11T06:44:36.983 回答