我需要一种方法来切换里面的文本(这个)虽然这个代码我做得不对,我不知道为什么。要切换的文本位于show class中。
$('.show').on('click', function(e) {
e.preventDefault();
$(this).closest('.less').next('.more').toggle(function (){
$(this).text("change text")
.stop();
}, function(){
$(this).text("change text again")
.stop();
});
});