Mantén la atención porque en esta reseña hallarás la contestación que buscas.Este escrito ha sido aprobado por nuestros especialistas para garantizar la calidad y exactitud de nuestro contenido.
Ejemplo 1: cómo mostrar hide div en html javascript
DOCTYPEhtml><html><head><metaname="viewport"content="width=device-width, initial-scale=1"><style>#myDIVwidth:100%;padding:50px0;text-align: center;background-color:lightblue;margin-top:20px;style>head><body><p>Click the "Try it" button to toggle between hiding and showing the DIV element:p><buttononclick="myFunction()">Try itbutton><divid="myDIV">
This is my DIV element.
div><p><b>Note:b> The element will not take up any space when the display property set to "none".p><script>functionmyFunction()var x =document.getElementById("myDIV");if(x.style.display==="none")
x.style.display="block";else
x.style.display="none";script>body>html>
Ejemplo 2: javascript oculta un div
<divid="main"><p> Hide/show this div p>div>
('#main').hide(); //to hide
// 2nd way, by injecting css using jquery
$("#main").css("display", "none");
Si estás de acuerdo, puedes dejar un tutorial acerca de qué le añadirías a esta crónica.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)