android PhoneGap - 在我的 中写入什么路径?
在我的index.html中,我想显示一张图片,但是无论我给src属性提供什么路径,它都不会显示它。一定要在电话里吗? 我使用 JQuery mobile 作为样式。
<div data-role="page" id="start" >
<div data-role="header">
<h1>Welcome</h1>
</div>
<div class="ui-body ui-body-b">
<p>Lorem ipsum and so on</p>
<img src="/HelloPhonegap/res/drawable-hdpi/goat.jpg" alt="me during last summer vacation"/>
</div>
</div>
src属性的当前路径是图片存储的位置。我在这里能做什么? 我知道这不是 JPEG,因为当我从互联网上的某个地方链接 jpg 时,就会显示图片。我在这里想念什么? 最好的问候丹尼尔
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 android:您将 html/js 项目放在 asset/www 文件夹中,例如将图像放在 asset/www/img/goat.jpg 中。
如果您的 html 文件位于 assets/www/ 中,您只需使用
构建应用程序,PhoneGap 就会发挥作用。
For android: You put your html/js project in the assets/www folder and for example the image in assets/www/img/goat.jpg.
if your html file is in assets/www/ you just use
build the app and PhoneGap does the magic.