我已正确链接html中的在线引导样式表,但是当我打开链接时,“点击此处!”没有按钮。我该如何解决这个问题?
这是我的代码: using btn-primary
这是输出: No button there
答案 0 :(得分:0)
设置YOUR_CLIENT_SECRET
而非button
div
见这里:https://getbootstrap.com/docs/4.0/components/buttons/
但是,如果您有DIV检查是否有引导脚本
<button type="button" class="btn btn-primary">Primary</button>
&#13;
答案 1 :(得分:0)
要获取按钮,请使用<button>
标记。并且在必要的基础上设置类型按钮,提交。
<div class="container">
<button type="button" class="btn btn-primary">Primary Button</button>
</div
有关详细信息,请访问https://www.w3schools.com/bootstrap/bootstrap_buttons.asp
答案 2 :(得分:0)
它应该与div以及按钮或锚标签一起使用。
<div class="btn btn-primary">Primaray</div>
OR
<button type="button" class="btn btn-primary">Primary</button>
OR
<a href="#" class="btn btn-primary">Primary</a>