织梦现键盘左、右方向键翻页的方法
织梦dedecms现键盘左、右方向键翻页的方法。
1、复制js代码到内容页和列表页织梦模板中
$(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;
});
});
2、内容页调用代码修改
打开 include/arc.archives.class.php 文件
找到
$this->PreNext[‘pre’] = “上一篇:{$preRow[‘title’]} “;
修改为
$this->PreNext[‘pre’] = “上一篇:{$preRow[‘title’]} “;
找到
$this->PreNext[‘next’] = “下一篇:{$nextRow[‘title’]} “;
修改为
$this->PreNext[‘next’] = “下一篇:{$nextRow[‘title’]} “;
3、列表页调用代码修改
打开 include/arc.listview.class.php 文件
找到
$prepage.=”上一页
”;
修改为
$prepage.=”上一页
”;
找到
$nextpage.=”下一页
”;
修改为
$nextpage.=”下一页
”;
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦现键盘左、右方向键翻页的方法