gpt4 book ai didi

android - "loading"使用 cordova (phonegap) 时自动附加 div

转载 作者:太空狗 更新时间:2023-10-29 12:49:52 24 4
gpt4 key购买 nike

我正在使用 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>

我不知道为什么,但是当我运行这个应用程序时(也是在电脑浏览器上打开时)我在页面底部附加了这个 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');
}
});
});

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

最佳答案

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

关于android - "loading"使用 cordova (phonegap) 时自动附加 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13347970/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com