jquery移动网站没有在Android设备上格式化

时间:2017-11-26 01:35:50

标签: javascript android jquery jquery-mobile phonegap-build

我正在使用www3schools的示例来了解如何在Android设备上创建应用程序;

    <!DOCTYPE html>
    <html>
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" 
    href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
    <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-
    1.4.5.min.js"></script>

    <script>
    var _hmt = _hmt || [];
    (function() {
    var hm = document.createElement("script");
    hm.src = "//hm.baidu.com/hm.js?73c27e26f610eb3c9f3feb0c75b03925";
    var s = document.getElementsByTagName("script")[0];
    s.parentNode.insertBefore(hm, s);
    })();
    </script>
    </head>
    <body>

    <div data-role="page" id="pageone" data-theme="a">
    <div data-role="header">
    <h1>Page Header</h1>
    </div>

    <div data-role="main" class="ui-content">
    <p>Some Text..</p>
    <a href="#">A Standard Text Link</a>
    <a href="#" class="ui-btn">Link Button</a>
    <p>A List View:</p>
    <ul data-role="listview" data-autodividers="true" data-inset="true">
    <li><a href="#">Adele</a></li>
    <li><a href="#">Billy</a></li>
    </ul>
    <label for="fullname">Input Field:</label>
    <input type="text" name="fullname" id="fullname" placeholder="Name..">    
    <label for="switch">Toggle Switch:</label>
    <select name="switch" id="switch" data-role="slider">
    <option value="on">On</option>
    <option value="off" selected>Off</option>
    </select>
    </div>

    <div data-role="footer">
    <h1>Page Footer</h1>
    </div>
    </div> 

    </body>
    </html>

下面的屏幕截图显示了我电脑上浏览器的视图;

enter image description here

下面的屏幕截图显示了我的Android设备上的浏览器视图;运行android版本7;

enter image description here

我正在使用phonegap在线构建来创建下载到Android设备的应用程序。我不明白为什么这在android设备中没有呈现相同的效果。我在每个Chrome中使用相同的浏览器。 任何指导将不胜感激。

1 个答案:

答案 0 :(得分:0)

我终于解决了这个问题。我只是将index.html上传到在线手机间隙构建服务。我现在已经包含了phonegap在链接到本地​​设备时使用的其他文件。这解决了这个问题。我认为这些将由在线构建网站自动添加。请参阅手机上app的下方屏幕截图。

App on phone