bootstrap: 比特币字形未出现

bootstrap: bitcoin glyphicon not appearing

我似乎无法显示比特币字形:

代码:(玉中)

.input-group
                 input.form-control(type="text" placeholder="USD")
                 span.input-group-addon.glyphicon.glyphicon-usd

              .input-group
                 input.form-control(type="text" placeholder="BTC (Approx.)")
                 span.input-group-addon.glyphicon.glyphicon-bitcoin

usd glyphicon出现没问题,但bitcoin没有。为什么?

编辑:这是请求的 HTML 输出:

<input placeholder="BTC (Approx.)" class="form-control" type="text"><span class="input-group-addon glyphicon glyphicon-bitcoin"></span>

您使用的不是最新版本的Bootstrap。比特币字形仅在 3.3.2 版本中引入。

示例:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>


<div class="input-group">
  <input placeholder="BTC (Approx.)" class="form-control" type="text">
  <span class="input-group-addon glyphicon glyphicon-bitcoin"></span>
</div>