我的烧瓶应用程序中有一段代码,我想实现一个按钮,将我带到一个特定的页面。
<button type="button" class="btn btn-primary btn-block">Evaluate</button>
如何链接按钮?我确实把标签包起来了,但是我可以直接使用标签吗? (使用标签正在改变我的造型)
*我做了下面的代码,但这对我不好
<a href="{{url_for('evaluate')}}"><button type="button" class="btn btn-primary btn-block">Evaluate</button></a>
答案 0 :(得分:4)
使用<a>
代码
<a href="someUrl" class="btn btn-primary btn-block">Evaluate</a>
使用href
属性导航到新位置。
Bootstrap将负责将<a>
标记作为带有css类的按钮呈现。