Home > Article > Web Front-end > How to Toggle DIV Visibility with a Button Click?
This task involves toggling the visibility of a DIV with the click of a button. The following solutions provide comprehensive methods to achieve this functionality:
Pure JavaScript:
In pure JavaScript, the following code can be used:
<code class="javascript">var button = document.getElementById('button'); // Assumes element with id='button' button.onclick = function() { var div = document.getElementById('newpost'); if (div.style.display !== 'none') { div.style.display = 'none'; } else { div.style.display = 'block'; } };</code>
jQuery:
If jQuery is available, a more concise solution is:
<code class="javascript">$("#button").click(function() { // assumes element with id='button' $("#newpost").toggle(); });</code>
The above is the detailed content of How to Toggle DIV Visibility with a Button Click?. For more information, please follow other related articles on the PHP Chinese website!