我不能這個切換閱讀更多或更少的滑動切換工作。我非常接近,但我不確定如何顯示#show-about
定位點,因此它首先顯示"read more"
?閱讀更多/更少的滑動切換問題?
$('#show-about').click(function(e){
e.preventDefault();
$('#about-hidden').slideToggle();
$(this).text($(this).text() == 'Read More' ? "Show Less" : "Read More");
});