中写入什么路径?" />

android PhoneGap - 在我的 中写入什么路径?

发布于 2024-12-10 10:36:28 字数 534 浏览 0 评论 0 原文

在我的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 时,就会显示图片。我在这里想念什么? 最好的问候丹尼尔

in my index.html, I want to show a picture, but no matter what path i give to the src attribute, it wont show it. Does it have to be on the phone?
Im using JQuery mobile for the styles.

<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>

the current path of the src attribute is where the picture is stored. What can I do here?
I know it´s not the JPEG, because when I link a jpg from somewhere in the internet, the pic is shown. What do I miss here?
best regards daniel

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

探春 2024-12-17 10:36:28

对于 android:您将 html/js 项目放在 asset/www 文件夹中,例如将图像放在 asset/www/img/goat.jpg 中。

如果您的 html 文件位于 assets/www/ 中,您只需使用

<img src="img/goat.jpg" alt="me during last summer vacation"/>

构建应用程序,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

<img src="img/goat.jpg" alt="me during last summer vacation"/>

build the app and PhoneGap does the magic.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文