簡単に設置できるのでお世話になっています。
jQueryのタグ
<script> jQuery(function($){ $('.box').hide(); $('.title').click(function () { $(this).next('.box').slideToggle(); $(this).toggleClass('open'); }); }); </script>
cssのタグ
<style> .title:hover{ color: #999; } .title:after{ content: "↓"; } .title.open:after{ content: "↑"; } .box{ background: #eee; padding: 10px; } </style>参考サイトクリックで開閉するシンプルなアコーディオンメニュー