0

我正在使用 Apache Cordova (PhoneGap) 构建一个 Android 应用程序。我刚刚制作了应用程序的主页(从网站获取内容并加载到手机中),并看到此手机页面的页脚位置有两个文本“正在加载”

我从这个stackoverflow帖子中读到这是因为我没有在应用程序中链接jquery mobile css。所以我从他们的网站下载了 jquery mobile css,然后通过链接这个 css,解决了加载文本问题。它不再显示。

但是,我的所有 css 和移动页面的格式都被这个 jquery mobile css 覆盖了,现在页面看起来很糟糕。

我只想知道如何覆盖 jquery 移动 css 设置,让应用程序只使用我的自定义 css,但同时,我不希望"Loading"文本在那里。

这是我拥有的代码 -

<!DOCTYPE html>
<html>
<head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta name="format-detection" content="telephone=no" />
        <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
        <link rel="stylesheet" type="text/css" href="css/jquery.css" />
        <link rel="stylesheet" type="text/css" href="css/index.css" />

</head>
<body>
...
--- my code goes here ---
...

<script src="js/jquery.js"></script> // this is jquery mobile
</body>
</html>
<body>

我该怎么做呢?基本上,我不想要任何装载机。

4

0 回答 0