📅  最后修改于: 2022-03-11 15:02:43.833000             🧑  作者: Mango
//elemento html
//funcionn js
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}