Pues tengo un "Catalogo de Productos" en donde quiero a travez de un menu mostrar distintos productos y que el resto permanezca oculto, el problema es que el codigo que tengo me muestra solo 1(una) imagen y las otras de ese tipo me las deja ocultas
os dejo el codigo para ver si me ayudan con alguna solucion, ya que no soy muy avispado con JavaScript
Codigo JS para mostrar y ocultar las imagenes.
Código Javascript
:
Ver original<script>
idImagenVisible="Rack";
idImagenVisible="Modular";
function mostrar(id)
{
document.getElementById(idImagenVisible).style.display="none";
document.getElementById(id).style.display="block";
idImagenVisible=id;
}
</script>
Menu
Código HTML:
Ver original <li><a href="index.html">EMPRESA
</a></li> <li><a href="Productos.html">PRODUCTOS
</a> <li><a href="#" onclick="mostrar('Rack')">Racks
</a></li> <li><a href="#" onclick="mostrar('Bahiuts')">Bahiuts
</a></li> <li><a href="#" onclick="mostrar('Roperos')">Roperos
</a></li> <li><a href="#" onclick="mostrar('Modular')">Modulares
</a></li> <li><a href="#" onclick="mostrar('Juego ')">Juego de Dormitorio
</a></li> <li><a href="#" onclick="mostrar('BMesadas ')">Bajo Mesadas y Alacenas
</a></li> <li><a href="#" onclick="mostrar('Botineros ')">Botineros y Mesas Ratonas
</a></li> <li><a href="contacto.html" >CONTACTOS
</a></li> <li><a href="Catalogo.pdf" target="_blank">CATALOGO
</a></li>
el Div con las imagenes que quiero mostrar
Código HTML:
Ver original <img class="oculto" id="Rack" src="Imagenes/Productos/Rack TV_small.jpg" alt="Rack TV" width="162" height="120"/> <img class="oculto" id="Rack" src="Imagenes/Productos/Rack TV2_small.jpg" alt="Rack TV2" width="162" height="120"/> <img class="oculto" id="Bahuits" src="Imagenes/Productos/Bahuits1_small.jpg" alt="Bahuits1" width="162" height="120"/> <img class="oculto" id="Bahuits" src="Imagenes/Productos/Bahuits2_small.jpg" alt="Bahuits2" width="162" height="120"/> <img class="oculto" id="Bahuits" src="Imagenes/Productos/Bahuits3_small.jpg" alt="Bahuits3" width="162" height="120"/> <img class="oculto" id="Ropero" src="Imagenes/Productos/ropero_small.jpg" alt="Ropero" width="162" height="120"/> <img class="oculto" id="Ropero" src="Imagenes/Productos/ropero2_small.jpg" alt="Ropero2" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular1_small.jpg" alt="Modular1" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular2_small.jpg" alt="Modular2" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular3_small.jpg" alt="Modular3" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular4_small.jpg" alt="Modular4" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular5_small.jpg" alt="Modular5" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular6_small.jpg" alt="Modular6" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular7_small.jpg" alt="Modular7" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular8_small.jpg" alt="Modular8" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular9_small.jpg" alt="Modular9" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular10_small.jpg" alt="Modular10" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular11_small.jpg" alt="Modular11" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular12_small.jpg" alt="Modular12" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular13_small.jpg" alt="Modular13" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular14_small.jpg" alt="Modular14" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular15_small.jpg" alt="Modular15" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular16_small.jpg" alt="Modular16" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular17_small.jpg" alt="Modular17" width="162" height="120"/> <img class="oculto" id="Modular" src="Imagenes/Productos/Modular18_small.jpg" alt="Modular18" width="162" height="120"/> <img class="oculto" id="Juego" src="Imagenes/Productos/Juegodedormitorio_small.jpg" alt="Juegodedormitorio" width="162" height="120"/> <img class="oculto" id="Bmesada" src="Imagenes/Productos/Bajo Mesada_small.jpg" alt="Bajo Mesada" width="162" height="120"/> <img class="oculto" id="Botiner" src="Imagenes/Productos/botinero_small.jpg" alt="botinero" width="162" height="120"/>