我试图在我的网站上建立一个collase expand 功能。
我有以下切换隐藏的 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')
}
});
});