Skip to content

Instantly share code, notes, and snippets.

@fr33m44
Last active November 23, 2016 09:12
Show Gist options
  • Save fr33m44/f2abc5a5204e0d14cdf915c56d5ffb10 to your computer and use it in GitHub Desktop.
Save fr33m44/f2abc5a5204e0d14cdf915c56d5ffb10 to your computer and use it in GitHub Desktop.
Typecho实现键盘左箭头右箭头按键切换到上一篇下一篇文章
if(document.getElementsByClassName('post-near')[0].childNodes[1].innerHTML != '上一篇: 没有了')
var pre_link = document.getElementsByClassName('post-near')[0].childNodes[1].childNodes[1].href;
if(document.getElementsByClassName('post-near')[0].childNodes[3].innerHTML != '上一篇: 没有了')
var next_link = document.getElementsByClassName('post-near')[0].childNodes[3].childNodes[1].href;
document.onkeydown=function(e){
if(e.keyCode==37 && pre_link != undefined)
window.location = pre_link;
else if (e.keyCode ==39 && next_link != undefined)
window.location = next_link;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment