Posted on | by liu
本篇文章,站长将讲述DedeCMS内容页和列表页键盘方向键翻页,以最少的代码,实现所要的功能!
首先,复制js到你的DedeCMS内容页和列表页模板之中
$(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; });
});
第二,DedeCMS内容页中有上一篇和下一篇的调用代码,需要找到这些代码更改一下即可,打开/include/arc.archives.class.php文件找到(大概在813行左右)
$this->PreNext[‘pre’] = “上一篇:{$preRow[‘title’]} “;
更改为
$this->PreNext[‘pre’] = “上一篇:{$preRow[‘title’]} “;
找到
$this->PreNext[‘next’] = “下一篇:{$nextRow[‘title’]} “;
更改为
$this->PreNext[‘next’] = “下一篇:{$nextRow[‘title’]} “;
改完后保存,然后去刷新内容页,然后按下键盘的左右键,应该已经改好了,接下来进行列表页,打开/include/arc.listview.class.php,找到(大概在1147行左右)
$prepage.=”上一页\r\n”;
更改为
$prepage.=”上一页\r\n”;
找到
$nextpage.=”下一页\r\n”;
更改为
$nextpage.=”下一页\r\n”;
至此全部修改完毕,刷新一下列表页试试吧。切记需要配合上篇文章中的js哦。