javascript 阅读更多

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 阅读更多相关的知识,希望对你有一定的参考价值。

<!--Read more JS-->
<script>
//If using in Wordpress
window.$ = jQuery
 
 
// Hide the extra content initially, using JS so that if JS is disabled, no problemo:
$('.read-more-content').addClass('hide')
 
// Set up a link to expand the hidden content:
.before('<a class="read-more-show" href="#"> Read More</a>')
 
// Set up a link to hide the expanded content.
.append(' <a class="read-more-hide" href="#"> Read Less</a>');
 
// Set up the toggle effect:
$('.read-more-show').on('click', function(e) {
$(this).next('.read-more-content').slideDown('slow').removeClass('hide');
$(this).addClass('hide');
e.preventDefault();
});
 
$('.read-more-hide').on('click', function(e) {
$(this).parent('.read-more-content').slideUp('slow').addClass('hide').parent().children('.read-more-show').removeClass('hide');
e.preventDefault();
});
</script>
<!--/Read more JS-->

以上是关于javascript 阅读更多的主要内容,如果未能解决你的问题,请参考以下文章

javascript 阅读更多 - 展开文字

javascript “阅读更多”链接以显示全文

javascript 自定义阅读更多标签功能

javascript 阅读更多揭示完整内容

javascript 阅读更多

如何将鼠标悬停在容器上以显示带有Javascript的更多按钮?