作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遵循 http://phonegap.com/start#android 中的指南从 Sencha Touch 加载我的 app.js。
这是我的index.html:
<head>
<title>Getting Started</title>
<!-- Sencha Touch -->
<link rel="stylesheet" href="libs/touch/resources/css/sencha-touch.css" type="text/css"></link>
<script type="text/javascript" src="libs/touch/builds/sencha-touch-all.js"></script>
<!-- Application -->
<link rel="stylesheet" href="libs/touch/resources/css/app.css" type="text/css"></link>
<script type="text/javascript" src="assets/www/app.js"></script>
<script type="text/javascript" charset="utf-8" src="assets/www/phonegap-1.4.1.js">
</script>
</head>
<body>
<h1>Hello World</h1>
</body>
库的 src 链接是正确的。我可以做些什么来在 Android 设备中加载我的 app.js?
最佳答案
对于 PhoneGap,您所有的文件和目录都应该在 assets/www 目录中并从那里引用。因此,对于 assets/www 中的 index.html,它应该引用没有任何前缀目录的 app.js 和 phonegap-1.4.1:
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" charset="utf-8" src="phonegap-1.4.1.js">
关于android - 无法使用 PhoneGap 在 Android 中加载 sencha touch 索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9219551/
我是一名优秀的程序员,十分优秀!