一般来说电脑用户可以用鼠标的时候不会特意用键盘,因此博客吧认为通过键盘方向键来翻页的功能是鸡肋。不过对于喜欢用笔记本电脑躺床上看小说浏览网页图册的电脑用户来说,这个作用倒能提高网站的用户体验。下面是针对织梦DedeCMS实现方向键翻页效果的方法,有需要的织梦DedeCMS站长可以参考实现。
方法步骤:
在DedeCMS的include目录下找到arc.archives.class.php文件并对其进行编辑,在其中找到以下代码:
$this->PreNext['pre'] = "上一篇:{$preRow['title']} ";
将上面的代码替换为以下代码:
$this->PreNext['pre'] = "https://www.liuzhongwei.com/a/dedejq/$mlink ";$this->PreNext['next'] = "下一篇:{$nextRow['title']} ";
接着在织梦DedeCMS模板文件的前面添加以下JS调用代码进行调用:
function getElement(aID){return (document.getElementById) ? document.getElementById(aID): document.all[aID];}function makeRequest(url){http_request=false;if(window.XMLHttpRequest){//Mozilla,Safari,...http_request=new XMLHttpRequest();if(http_request.overrideMimeType){http_request.overrideMimeType('text/xml');}}else if(window.ActiveXObject){//IEtry{http_request=new ActiveXObject("Msxml2.XMLHTTP");}catch(e){try{http_request=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){}}}if(!http_request){alert('Giving up:(Cannot create an XMLHTTP instance)');return false;}return http_request;}
也可将上面的代码整理,保存为.js文件再进行调用,这样可以保持网页代码整洁。 至此就可实现织梦DedeCMS键盘方向键翻页效果