jquery mobile site没有在android设备上格式化
Posted
技术标签:
【中文标题】jquery mobile site没有在android设备上格式化【英文标题】:jquery mobile site not formatting on android device 【发布时间】:2018-05-09 14:04:59 【问题描述】:我正在使用来自 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>
下面的屏幕截图显示了我电脑上浏览器的视图;
下面的屏幕截图显示了我的安卓设备上的浏览器视图;运行安卓版本 7;
我正在使用 phonegap 在线构建来创建下载到 android 设备的应用程序。我不明白为什么这在 android 设备中呈现不一样。我在每个浏览器中都使用相同的浏览器,chrome。 任何指导将不胜感激。
【问题讨论】:
【参考方案1】:我终于解决了这个问题。我只是将 index.html 上传到在线电话差距构建服务。我现在已经包含了 phonegap 在链接到本地设备时使用的其他文件。这解决了这个问题。我认为这些会由在线构建站点自动添加。请参阅下面手机应用的屏幕截图。
【讨论】:
以上是关于jquery mobile site没有在android设备上格式化的主要内容,如果未能解决你的问题,请参考以下文章
定义没有定义jquery.mobile.custom.js?