Diferència entre revisions de la pàgina «Exercici 4 Events»
De wikiserver
Línia 24: | Línia 24: | ||
</source> | </source> | ||
− | + | <!-- | |
'''ALTRA FORMA''' | '''ALTRA FORMA''' | ||
Línia 45: | Línia 45: | ||
} | } | ||
</source> | </source> | ||
+ | ->> |
Revisió del 19:14, 27 gen 2015
Es mostra la part corresponent al tag Script de Javascript:
<script type="text/javascript">
window.onload=function(){
document.getElementById("enlace_1").onclick=function(){ mostraOculta("contenidos_1");};
document.getElementById("enlace_2").onclick=function(){ mostraOculta("contenidos_2");};
document.getElementById("enlace_3").onclick=function(){ mostraOculta("contenidos_3");};
}
function mostraOculta(id){
var nombre = id;
var link_nombre = "enlace_" + nombre.split("_")[1];
var parrafo = document.getElementById(nombre);
var link = document.getElementById(link_nombre);
if(parrafo.style.display == "none"){
parrafo.style.display = "block";
link.innerHTML = "Oculta contenido";
}
else{
parrafo.style.display = "none";
link.innerHTML = "Muestra contenido";
}
}
</script>