問題:
如何顯示或隱藏DIV當按鈕擊了?
答案:
要使用按鈕切換 DIV 的可見性,您可以使用 JavaScript 或 jQuery。
使用純JavaScript:
取得按鈕元素的引用:
var button = document.getElementById('button');
button.onclick = function() {
var div = document.getElementById('newpost');
if (div.style.display !== 'none') {
div.style.display = 'none'; // Hide } else { div.style.display = 'block'; // Show } };
使用jQuery:
$("#button").click(function() {
$("#newpost").toggle(); });
以上是如何使用單擊按鈕來顯示或隱藏 DIV 元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!