切り替えるときに+を-に変更する必要があります。コードはhttp://jsfiddle.net/B65Ht/で設定されています
HTML
<a class="expandB" href="#">
<h3>Advocacy + </h3>
</a>
<div class="content">
Content goes here
</div>
jQuery
$(document).ready(function(){
$('.content').hide();
$("a.expandB").click(function() {
$(this).toggleClass("expandB").next().slideToggle("slow", function(){
// script to toggle between + and -
});
return false; //Prevent the browser jump to the link anchor/Prevent the browser jump to the link anchor
});
});
</ p>