0
4

1 回答 1

1

这允许您设置一个简单的下一个/上一个锚跳转:

 <a href="#" onclick="move(-1)">prev</a> <a href="#" onclick="move(1)">next</a>

JS:

var positions = "abcdefghijk";
var curpos = 0
function move(dir) {
    (event.preventDefault) ? event.preventDefault() : event.returnValue = false;  
    curpos = curpos + dir;
    if(curpos<0) {
        curpos = 0;
    }
    if(curpos>positions.length-1) {
        curpos = positions.length-1;
    }
    window.location.hash == '#'+positions[curpos]; 
}

​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ ​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ ​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​。

于 2012-11-19T15:52:11.713 回答