为什么phonegap应用程序在覆盖index.html后总是显示自己的默认页面

时间:2014-11-08 18:37:08

标签: android html cordova

您好我已经在PhoneGap中创建了一个hello world类型的应用程序。我在www目录中有index.html,但它显示的是phonegap的默认主页。请参阅随附的屏幕截图,它始终显示。

的index.html

<html>
    <head>
        <meta charset="utf-8" />
        <meta name="format-detection" content="telephone=no" />
        <meta name="msapplication-tap-highlight" content="no" />
        <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
        <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/index.css" />
        <title>Hello World</title>
    </head>
    <body>
        <script type="text/javascript" src="cordova.js"></script>
        <script type="text/javascript" src="js/index.js"></script>
        <script type="text/javascript">
            app.initialize();
        </script>

        <form>
            Select your favourite color: <input type="color" name="favcolor">
            <br/>
            <input type="button" value="SUBMIT" />
        </form>

    </body>
</html>

但是当我在Android手机中运行该应用程序时,它始终显示此信息。我已完成3-4重建完成项目,但仍然相同。

我不确定会出现什么问题或遗失。

提前致谢。

enter image description here

1 个答案:

答案 0 :(得分:5)

我认为您正在对添加的平台内的www文件夹进行更改。 尝试在项目的根文件夹中存在的www文件夹中进行更改,然后进行构建,它肯定会起作用。 选中此项:enter image description here