15/06/2012, 13:53
|
| Colaborador | | Fecha de Ingreso: junio-2007 Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses Puntos: 1567 | |
Respuesta: Preguntas Frecuentes Desplegables Algo como esto
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> /*<![CDATA[*/ p{ font-weight: bold; cursor: pointer; } #Uno,#Dos,#Tres{ display: none; } /*]]>*/ <script type="text/javascript"> //<![CDATA[ function contenido(cual){ var capas = new Array("Uno", "Dos", "Tres"); var i; for(i in capas){ if(capas[i] == cual){ document.getElementById(capas[i]).style.display = 'block'; }else{ document.getElementById(capas[i]).style.display = 'none'; } } } //]]> <p onclick="contenido('Uno')" >uno </p> <p onclick="contenido('Dos')" >dos </p> <p onclick="contenido('Tres')" >tres </p> <div id="Tres">Texto tres </div>
Saludos
__________________ La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R. |