ホームページ > 記事 > ウェブフロントエンド > JavaScript または jQuery を使用してボタンで DIV 要素の表示/非表示を切り替えるにはどうすればよいですか?
ボタンによる DIV の表示/非表示の切り替え
表示/非表示を切り替えたい「newpost」の ID を持つ DIV 要素があります。
これを実現するには、次のアプローチを検討してください:
純粋な JavaScript:
DIV の表示/非表示を切り替える JavaScript 関数を実装します。
<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:
jQuery は、toggle() メソッドを使用した簡潔なソリューションを提供します:
<code class="javascript">$("#button").click(function() { // assumes element with id='button' $("#newpost").toggle(); });</code>
以上がJavaScript または jQuery を使用してボタンで DIV 要素の表示/非表示を切り替えるにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。