Ver Mensaje Individual
  #7 (permalink)  
Antiguo 19/12/2008, 09:38
Avatar de the_web_saint
the_web_saint
 
Fecha de Ingreso: mayo-2008
Ubicación: localhost/tierra/america/panama
Mensajes: 1.229
Antigüedad: 16 años, 8 meses
Puntos: 43
Respuesta: Problema con función Javascript

Intenta de esta forma.

Código HTML:
<html>
<head>
<title>Galeria de Fotos</title>

<script language="Javascript">
fotonum = 1;
function atrasfoto() {
fotonum = fotonum - 1;
if(fotonum > 1){
  var mostrarprin = '<img src="fotos/foto';
  var mostrarfin = '">';
  var mostrar = mostrarprin+fotonum+'.jpg'+mostrarfin;
  document.getElementById('DivFoto').innerHTML=mostrar;
  }
}

function adelantefoto() {
fotonum = fotonum + 1;
if(fotonum < 6){
  var mostrarprin = '<img src="fotos/foto';
  var mostrarfin = '">';
  var mostrar = mostrarprin+fotonum+'.jpg'+mostrarfin;
  document.getElementById('DivFoto').innerHTML=mostrar;
  }
}
</script>

</head>
<body>
<div align="center">
  <table>
    <tr>
      <td onclick="atrasfoto();"><img src="fotos/left.gif"></td>
      <td onclick="adelantefoto();"><img src="fotos/right.gif"></td>
    </tr>
  </table>
  <table>
    <tr>
      <td><div id="DivFoto"><img src="fotos/foto1.jpg"></div></td>
    </tr>
  </table>
</div>
</body>
</html> 
La razón principal era que no colocaste el tipo de imagen, la extensión.

Saludos
__________________
..::The Saint::..
El pesimista se queja del viento; el optimista espera que cambie; el realista ajusta las velas.

Última edición por the_web_saint; 19/12/2008 a las 09:43