简体   繁体   中英

Phonegap doesn't show images

I have a problem with my current application built with PhoneGap. Images are not loading :

http://i.stack.imgur.com/0p5bv.png

Here is my code:

<div id="center_content">
    <div id="dashboard">
        <a href="#scheduler" onclick="loadxml();">
        <img src="images/horario.png" class="dashboard_icon"/></a>
    <a href="#tests" onclick="loadjson();">
    <img src="images/examenes.png" class="dashboard_icon"/></a>
    <a href="#"><img src="images/tareas.png" class="dashboard_icon"/</a>
    <a href="#"><img src="images/tareas.png" class="dashboard_icon"/></a>
    <a href="#"><img src="images/herramientas.png" class="dashboard_icon"/></a>
    <a href="#"><img src="images/configuracion.png" class="dashboard_icon"/></a>
    <img src="images/tareas.png" class="dashboard_icon"/>
    <img src="images/tareas.png" class="dashboard_icon"/>
    <img src="examenes.png"/>
    </div>
</div>

EDIT 2: and here the application structure:

PG\\assets\\www (contains the html page) and the image folder...PG\\assets\\www\\images\\

Any idea how to solve this problem ?

Make sure that you have specified the correct directory for the images. Try putting the actual http link to the images as the src. For example, "http://yourdomain.com/images/tareas.png"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM