|
The visibility of the div can control the display and hiding of the div, but the page is blank when hidden: style="visibility: none; " document.getElementById("typediv1").style.visibility="hidden"; Hide document.getElementById("typediv1").style.visibility="visible"; shown
By setting the display property, you can free up the page space occupied by hiding the div, as shown below style="display: none; " document.getElementById("typediv1").style.display="none"; Hide document.getElementById("typediv1").style.display=""; Obvious
|