滚动顶部onclick href id?

时间:2015-01-05 22:11:43

标签: javascript scroll href

我有这个问题:

<a href="http://google.com" name="iframe" id="test">Google</a>

该页面使用此javascript:pastebin.com/DGN7CM9v

我需要点击它滚动到顶部,我该怎么做?

我已经尝试在这个论坛和Google中阅读,但没有,我也使用wordpress。我能做什么?在线我只发现如何在没有链接的情况下滚动链接。

此致

3 个答案:

答案 0 :(得分:0)

试一试:

<a onclick="window.scrollTo(0, 0);" href="#" id="test"> Test </a>

答案 1 :(得分:0)

尝试按照以下方式构建您的网页:(即在页面顶部放置一个名为top的锚标记)

<html>
  <head>
    <!-- your head tags -->
  </head>
  <body>
    <!-- anchor tag to the top -->
    <a name="top"></a>

    <!-- other html -->
    <a href="#top">Go to top</a>
  </body>
</html>

当您点击转到顶部链接时,它会转到名为顶部的锚点所在的位置。

答案 2 :(得分:-1)

如何将你包裹到另一个

  <body>
        <a name="top"></a>

        ...

        <a href="#top"><a href="http://google.com" name="iframe" id="test">Google</a></a>
  </body>