名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。
DedeCMS站点程序站点列表页支持键盘翻上、下页功能会让用户体验翻页十分方便,网站seo优化博客、图片站采用这样的功能将为站点带来更多的PV。网站开发上、下翻页功能并不复杂,结合DedeCMS站点程序,织梦程序58网站seo优化整合了这个功能,并修正首页和第一页分页网站内容重复问题,以适合网站seo优化优化。
支持键盘左右键翻页JS部分
<script type="text/javascript" src="jquery.js"></script><!--引入jquery--> <script type="text/javascript"> $(document).ready(function(){ var prevpage=$("#pre").attr("href"); var nextpage=$("#next").attr("href"); $("body").keydown(function(event){ if(event.keyCode==37 && prevpage!=undefined) location=prevpage; if(event.keyCode==39 && nextpage!=undefined) location=nextpage; }); }); </script> |
控制的站点列表上、下页<a>标签如下
<a id="pre" href="list_1_1">上一页</a> <a id="next" href="list_1_3">下一页</a> |
但是DedeCMS站点程序默认的上、下页格式并没有单独具体调用的标签。下面是实现相关具体操作方法:
静态网站网页分页单独具体调用上下页链接
打开/include/arc.listview.class.php,修改静态网站网页分页站点列表部分(动态分页感兴趣的童鞋自己研究一下吧),找到
return $plist; } /** * 获取动态的分页站点列表 |
前面加上
$plist = ''; if(preg_match('/index/i', $listitem)) $plist .= $indexpage; if(preg_match('/pre/i', $listitem)) $plist .= $prepage; if(preg_match('/pageno/i', $listitem)) $plist .= $listdd; if(preg_match('/next/i', $listitem)) $plist .= $nextpage; if(preg_match('/end/i', $listitem)) $plist .= $endpage; if(preg_match('/option/i', $listitem)) $plist .= $optionlist; if(preg_match('/info/i', $listitem)) $plist .= $maininfo; |
{dede:pagelist listitem="pre"/} {dede:pagelist listitem="next"} {dede:pagelist listitem="index"} {dede:pagelist listitem="option"} {dede:pagelist listitem="pageno"} {dede:pagelist listitem="info"} |
具体调用出来的hTML样式如下:
<p class="pages"> <ul> <li><a href="list_3_1.html">上一页</li> <li class="thisclass"><a href="list_3_2.html">2</a></li> <li><a href="list_3_3.html">3</a></li> <li><a href="list_3_2.html">下一页</a></li> <li><a href="list_3_3.html">末页</a></li> <li><span class="pageinfo">共 <strong>3</strong>页<strong>11</strong>条</span></li> </ul> </p> |
实现键盘翻页需要绑定静态网站网页分页的上一页和下一页<a>标签的ID,默认是没有ID,打开include/arc.listview.class.php,找到
/** * 获取静态网站网页的分页站点列表 |
继续往下,找到
$prepage.="<li><a href='".str_replace("{page}",$prepagenum,$tnamerule)."'>上一页</a></li>\r\n"; |
修改为
$prepage.="<li><a id='pre' href='".str_replace("{page}",$prepagenum,$tnamerule)."'>上一页</a></li>\r\n"; |
找到
$nextpage.="<li><a href='".str_replace("{page}",$nextpagenum,$tnamerule)."'>下一页</a></li>\r\n"; |
修改为
$nextpage.="<li><a id='next' href='".str_replace("{page}",$nextpagenum,$tnamerule)."'>下一页</a></li>\r\n"; |
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。DedeCMS站点程序织梦程序实现会员签到加积分互动功能