Exercici 4 Events
De wikiserver
La revisió el 19:14, 27 gen 2015 per Jnoguera (Discussió | contribucions)
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>