我想创建一个可单击的按钮,该按钮将用户发送到表单部分(在同一页面上)。
<button type="button" class="btn btn-primary btn-sm">
send me to the form
</button>
...
<form id="form1">
<div class="form-group">
...
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
但是我没有找到任何解决方案。有什么不依赖jquery / JS的原因吗?如果没有,那么如何定位表格? Here是我的代码笔,以备不时之需。
以这种方式将您的按钮嵌套在链接标记中:
<a href="#form-1">
<button type="button" class="btn btn-primary btn-sm">
send me to the form
</button>