3

我正在使用 cordova 在 android 平台上进行移动应用程序开发。我在 www/index.html 文件中有这个 html 代码:

 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="Content-Language" content="en" />
    <script src="cordova-2.2.0.js" type="text/javascript"></script>
    <script src="jquery/jquery.js" type="text/javascript"></script>
    <script src="jquery.mobile/jquery.mobile-1.1.0.js" type="text/javascript"></script>
    <script src="JS/main.js" type="text/javascript"></script>
    <link rel="stylesheet" href="CSS/main.css"/>

</head>
    <body id="body" class="body">
        <div id="box" class="bodyBlack">
        </div>
    </body>
</html>

我不知道为什么,但是当我运行这个应用程序时(也只是在 PC 浏览器上打开时),我在页面底部附加了这个 div:

<div ui-loader ui-corner-all ui-body-a ui-loader-default>
    <span ui-loader ui-corner-all ui-body-a ui-loader-default></span>
        <h1>loading</h1>

这是 main.js 的内容:

$(document).ready(function(){
    $('#box').click(function(){
        if($(this).attr('class') == 'bodyBlack'){
            $(this).removeClass('bodyBlack');
            $(this).addClass('bodyWhite');
        }
        else{
            $(this).removeClass('bodyWhite');
            $(this).addClass('bodyBlack');
        }
    });
});

为什么以及从哪里获得剂量?我如何阻止它这样做?谢谢!!!

4

1 回答 1

3

这似乎是由 jQuery Mobile 生成的“加载消息”,请参阅此答案。所以 jQuery Mobile 正在加载一些东西(也许找不到它)。main.js如果您仍然遇到问题,请发布您的文件内容!

于 2012-11-12T21:14:40.460 回答