其实这个功能在很多小说站,图片站经常用到织梦网站实现利用键盘上下翻页效果,大伙可以留意一下,下面来讲讲具体的修改步骤:
首先打开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’]} “;
这样php代码就修改完了可以保存,接下来在内容页用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){//IE try{ 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; }
加到以前的位置.这样就全部修改完了,之后更新文档看看效果。