帝國cms要在內(nèi)容頁實現(xiàn)鍵盤翻頁,功能需求:方向鍵左、右鍵實現(xiàn)打開上一篇、下一篇,回車鍵返回欄目目錄。下面是老羅為大家整理的關(guān)于內(nèi)容頁實現(xiàn)鍵盤左右鍵翻頁的解決方案和思路,方便新手站長們在利用帝國cms建網(wǎng)站的時候,可以少走一些彎路。
功能需求:
1、方向鍵左、右鍵實現(xiàn)打開上一篇、下一篇
2、回車鍵返回欄目目錄。
解決方案:
將以下代碼放置于內(nèi)容頁模板底部。
<script>
_document.onkeydown=pageEvent;
var prevpage="[!--news.url--]e/public/GotoNext/?enews=pre&classid=[!--classid--]&id=[!--id--]";
var nextpage="[!--news.url--]e/public/GotoNext/?enews=next&classid=[!--classid--]&id=[!--id--]";
var listpage="[!--class.url--]";
function pageEvent(evt){
evt=evt||window.event;
var key=evt.which||evt.keyCode;
if(key==13) location=listpage;
if(key==37) location=prevpage;
if(key==39) location=nextpage;
};
</script>