[html]<button onclick="myFunction()">Cкрыть/Открыть</button>
<div id="myDIV">
Переключение между скрытием и отображением элемента с помощью JavaScript.
</div>
<script>
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}</script>
[/html]
Шаг 1) добавить HTML:
Код:
<button onclick="myFunction()">Click Me</button> <div id="myDIV"> This is my DIV element. </div>
Шаг 2) добавить JavaScript:
Код:
function myFunction() { var x = document.getElementById("myDIV"); if (x.style.display === "none") { x.style.display = "block"; } else { x.style.display = "none"; } }
- Подпись автора