作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在博客页面上添加一个“加载更多”按钮。我找到了 this exemple .但我不知道将每一部分代码放在博客上的什么地方(HTML/CSS/JavaScript),尤其是这段 jQuery 部分代码。
$(function(){
$("div").slice(0, 10).show(); // select the first ten
$("#load").click(function(e){ // click event for load more
e.preventDefault();
$("div:hidden").slice(0, 10).show(); // select next 10 hidden divs and show them
if($("div:hidden").length == 0){ // check if any hidden divs still exist
alert("No more divs"); // alert if there are none left
}
});
});
最佳答案
我找到了解决方案,这段代码就是我要找的
<div>content content content content content content content content content content content content content content content.<a href="javascript:void(0);" onclick="jQuery('.show-more-toggle').toggle();" class="show-more-toggle v5-dark-link">show more</a><span class="show-more-toggle" style="display: none">more more more more more more more more more more more more more more more more more </span></div>
关于javascript - 如何在博客上添加 "load more"按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35074348/
我是一名优秀的程序员,十分优秀!