我如何将html中的按钮链接到另一个类/ div

时间:2018-08-21 09:20:19

标签: html button hyperlink footer

我有一个1页的网站,如果单击它会导致我的页脚的页脚ID为$ clang-6.0 -target bpf -c test.c $ readelf -s test.o Symbol table '.symtab' contains 2 entries: Num: Value Size Type Bind Vis Ndx Name 0: 0000000000000000 0 NOTYPE LOCAL DEFAULT UND 1: 0000000000000000 0 NOTYPE GLOBAL DEFAULT 2 test

,该如何链接我的按钮?

我的代码:

Footersite

但是它并没有下降。我该如何解决?

2 个答案:

答案 0 :(得分:2)

即使您可以通过锚标记来实现此目的,但这也不是唯一的方法。使用button元素,您可以实现

HTML按钮

div {
  margin-top: 800px;
  width: 100px;
  height: 100px;
  background: tomato;
}
<button onclick="window.location.href='#abc'">Button</button>
<div id="abc"></div>

DEMO

如果您想要锚元素,那么

锚标签

div {
  margin-top: 800px;
  width: 100px;
  height: 100px;
  background: tomato;
}
<a href="#abc">Link</a>
<div id="abc"></div>

答案 1 :(得分:1)

只需使用锚链接即可实现这一目标:

<div class="openbutton">

  <a href="#Footersite">
    <p style="color: white;font-size: 17px;">
      Contact us
    </p>
  </a>

</div>

<a name="Footersite"></a>
<div style="margin:1000px 0;">
  Footersite
</div>