私のウェブサイトでコラーゼ展開機能を構築しようとしています。
非表示の div のみを切り替えて、「展開」テキストを折りたたみに変更しようとする次のものがあり、もう一度クリックすると、折りたたみ>展開します。
誰かが私が間違っていることを見ることができますか?
$('.coverage .expand').click(function(){
$(this).parent().parent().find('.subitems').toggle('slow', function() {
var togtit = $(this).parent().find('.expand');
if((togtit).is('Expand')){
togtit.html('Collapse')
} else {
togtit.html('Expand')
}
});
});