左固定菜单上的HTML目标链接无法正常工作

时间:2013-04-19 16:06:26

标签: html

http://www.elitedeafpoker.com/dev/poker-players.html上向下滚动一点,然后单击其中一个(位置:固定)左侧菜单,它不会跳到顶部,而是保持原位。我需要它在点击链接后跳转到播放器表格上方的内容顶部。

左侧菜单

<div class="list-1">
    <ul>
        <li class="pokerplayers"><a href="#pokerplayers">EDPS Poker Players </a></li>
        <li class="playerofthemonth"><a href="#playerofthemonth">Players of the Month</a></li>
        <li class="playeroftheyear"><a href="#playeroftheyear">Players of the Year </a></li>
    </ul>
</div>

最高内容

<div class="content-header"></div>

谢谢!

1 个答案:

答案 0 :(得分:-1)

怎么样?
<li class="pokerplayers">
  <a href="pokerplayers" onClick="window.scrollTo(0,0);">EDPS Poker Players </a>
</li>