我有这个命令按钮,我需要使用 Bootstrap 3 添加一个图标。
<h:commandButton id="logoutButton" action="#{loginController.logout()}" class="btn btn-primary" style="margin-top: 10px;margin-left: 10px;" value="Log Out"></h:commandButton>
出于引导 3 的原因,该图标位于跨度标记中,因此我尝试将其添加到命令按钮中的 value 属性中,如下所示:
<h:commandButton id="logoutButton" action="#{loginController.logout()}" class="btn btn-primary" style="margin-top: 10px;margin-left: 10px;" value="<span class="glyphicon glyphicon-log-out"></span>Log Out"></h:commandButton>
我有一个错误,我想我不能在 value 属性中添加 html 标签,有没有简单的方法可以做到这一点?