我正在创建一个使用jQuery加载方法将页面加载到div中的分页。我想添加一个下一个和上一个按钮,允许用户在单击div“#content”时加载下一页或上一页。我查看了jQuery .prev()和.next()方法,但我不知道如何在这里使用这些方法来实现我的目标。任何建议或演示都非常欢迎。提前谢谢。
//References
var sections = $("a"),
pageBody = $("#content"); //new/prev pages load in this div
//Manage click events
sections.on('click', function () {
//load selected section
switch (this.id) {
case "page-1":
pageBody.load("page1.html");
break;
case "page-2":
pageBody.load("pagee2.html");
break;
case "page-3":
pageBody.load("page3.html");
break;
case "page-4":
pageBody.load("page4.html");
break;
case "page-5":
pageBody.load("page5.html");
break;
default:
break;
}
});
这是我的HTML:
<div id="content">
<h2>Page TITLE</h2>
<p>Page Text Goes Here</p>
<div>
<a class="prev" href="#"></a>
<ul class="nav">
<li>
<a id="page-1" href="#"></a>
</li>
<li>
<a id="page-2" href="#"></a>
</li>
<li>
<a id="page-3" href="#"></a>
</li>
<li>
<a id="page-4" href="#"></a>
</li>
<li>
<a id="page-5" href="#"></a>
</li>
</ul>
<a class="next" href="#"></a>
</div>
</div>
答案 0 :(得分:2)
将标记更改为
<div id="content">
<h2>Page TITLE</h2>
<p>Page Text Goes Here</p>
<div>
<a class="prev" href="#"></a>
<ul class="nav">
<li><a id="page1" href="#"></a></li>
<li><a id="page2" href="#"></a></li>
<li><a id="page3" href="#"></a></li>
<li><a id="page4" href="#"></a></li>
<li><a id="page5" href="#"></a></li>
</ul>
<a class="next" href="#"></a>
</div>
</div>
并使用类似的东西
var sections = $(".nav a");
sections.on('click', function () {
$("#content").load(this.id + '.html');
sections.removeClass('active');
$(this).addClass('active');
});
$('.next').on('click', function() {
var idx = sections.index( sections.filter('.active') ) + 1;
idx = idx > sections.length-1 ? 0 : idx;
sections.eq(idx).trigger('click');
});
$('.prev').on('click', function() {
var idx = sections.index( sections.filter('.active') ) - 1;
idx = idx < 0 ? sections.length-1 : idx;
sections.eq(idx).trigger('click');
});
它递增索引并获取下一个/上一个元素等。
答案 1 :(得分:0)
为#content div提供数据属性,然后将其用作当前页面,例如
<div id="content" data-nav="1">
<h2>Page TITLE</h2>
<p>Page Text Goes Here</p>
<div>
<a class="prev" href="#"></a>
<ul class="nav">
<li><a data-nav="1" href="#"></a></li>
<li><a data-nav="2" href="#"></a></li>
<li><a data.nav="3" href="#"></a></li>
<li><a data.nav="4" href="#"></a></li>
<li><a data.nav="5" href="#"></a></li>
</ul>
<a class="next" href="#"></a>
</div>
然后你的脚本可以是这样的
//References
var sections = $("a"),
pageBody = $("#content"),//new/prev pages load in this div
prev = $(".prev"),
next = $(".next");
//Manage click events
sections.on('click',changeSection(this.data('nav')));
prev.on('click',function() {
// get the nav id
navId = this.data('nav');
prevId = navId - 1;
//change the data
changesection("page-" + prevId);
});
next.on('click',function() {
// get the nav id
navId = this.data('nav');
prevId = navId + 1;
//change the data
changesection("page-" + prevId);
});
// You can place this function outside of the $(document).load
function changeSection(id) {
function(){
// set the new nav
pageBody.data('nav', id);
//load selected section
switch(id){
case "1":
pageBody.load("page1.html");
break;
case "2": pageBody.load("pagee2.html");
break;
case "3": pageBody.load("page3.html");
break;
case "4": pageBody.load("page4.html");
break;
case "5": pageBody.load("page5.html");
break;
default:
break;
}
}
You can check out more info on .data() here
这是我已经完成的一件很快的事情,通过重构前一次和下一次点击并将它们组合成一个函数(通过传递一个true / false来添加一个或取走一个函数),确实可以做到更好。 )你可以放弃开关并直接通过nav中的变量加载页面