複数のdivのトグルボタンを作成しようとしています。以下のコードを共有する、1つの優れたチュートリアルを見つけました。
<script type="text/javascript">
$(document).ready(function(){
$('.example2').hide().before('<a href="#" id="toggle-example2" class="button">Open/Close</a>');
$('a#toggle-example2').click(function() {
$('.example2').slideToggle(1000);
return false;
});
});
</script>
.example2、.example3、...などの複数のdivクラスのコードを変更するにはどうすればよいですか。
チュートリアルは次のとおりです:http://rpardz.com/blog/show-hide-content-jquery-tutorial/