Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你好。我想在我的 HTML5 代码中显示图像。这是代码:
<div class="card"><img src="pics/back.png"/></div>
图像不显示,所以我把整个路径是这样的:
<div class="card"><img src="file:///android_asset/www/pics/back.png"/></div>
但问题仍然存在。我也在使用Phonegap。
请问有什么想法吗?
太感谢了。
我只是将图像 back.png 移到了“WWW”文件夹下,它工作正常,代码如下:
<div class="card"><img src="back.png"/></div>