織夢dedecms實(shí)現(xiàn)內(nèi)容頁和列表頁鍵盤方向鍵翻頁的方法
時間: 2018-04-26 21:44
閱讀: 次
作者:素材無憂網(wǎng)
本篇文章,站長將講述dedecms內(nèi)容頁和列表頁鍵盤方向鍵翻頁,以最少的代碼,實(shí)現(xiàn)所要的功能!
首先,復(fù)制js到你的dedecms內(nèi)容頁和列表頁模板之中
$(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內(nèi)容頁中有上一篇和下一篇的調(diào)用代碼,我們需要找到這些代碼更改一下即可,打開/include/arc.archives.class.php文件找到(大概在813行左右)
$this->PreNext['pre'] = "<a href='$mlink'>{$preRow['title']}</a> ";
更改為
$this->PreNext['pre'] = "<a id='pre' href='$mlink'>{$preRow['title']}</a> ";
找到
$this->PreNext['next'] = "下一篇:<a href='$mlink'>{$nextRow['title']}</a> ";
更改為
$this->PreNext['next'] = "下一篇:<a id='next' href='$mlink'>{$nextRow['title']}</a> ";
改完后保存,然后去刷新內(nèi)容頁,然后按下鍵盤的左右鍵,應(yīng)該已經(jīng)改好了,接下來進(jìn)行列表頁,打開/include/arc.listview.class.php,找到(大概在1147行左右)
$prepage.="<a href='".$purl."PageNo=$prepagenum'>上一頁</a>\r\n";
更改為
$prepage.="<a id='pre' href='".$purl."PageNo=$prepagenum'>上一頁</a>\r\n";
找到
$nextpage.="<a href='".$purl."PageNo=$nextpagenum'>下一頁</a>\r\n";
更改為
$nextpage.="<a id='next' href='".$purl."PageNo=$nextpagenum'>下一頁</a>\r\n";
至此全部修改完畢,刷新一下列表頁試試吧。切記需要配合上篇文章中的js哦。
標(biāo)簽: