标签: javascript html
我该如何编码,以便我的按钮onclick可以在同一html中链接到名为“ footeradc”的页脚节类
答案 0 :(得分:1)
在页脚中添加id。
id
<div id='myFooter' ...>
使用户点击如下所示的<a>,
<a>
<a href='#myFooter'/>
Click here for an example
答案 1 :(得分:0)
使用id选择器:
<a href="#footer">Visit my footer</a>