如何将Glyphicon添加到{{!! Form :: Button !!}}

时间:2015-06-16 18:36:29

标签: html laravel glyphicons

我正在使用Laravel 5.0并遇到以下问题。

这是我的按钮:

{!! Form::button('Delete', array('class' => 'btn btn-sm btn-danger', 'data-toggle' => 'modal', 'data-target' => '#'.$category->id)) !!} 

如何添加以下内容:

<span class="glyphicon glyphicon-trash"></span>   

我遇到了这个 - &gt; Is it possible to put a bootstrap glyphicon inside of a {{ Form::submit(' ')}} - Laravel但它是用于带有惊叹号的符号(它对我不起作用)。

2 个答案:

答案 0 :(得分:1)

我不了解Laravel,所以我不知道如何使用CSS。如果我在HTML / CSS环境中这样做,我将使用Pesudo Classes进行下面的示例。

.btn-danger:before {font-family:'Glyphicons Halflings';content:"\e020"} 
<button class="btn btn-sm btn-danger"> Blah</button>

您不必使用.btn-danger,而是使用您附加到该按钮的类/ ID。

JSFiddle

答案 1 :(得分:0)

这样可以解决问题:

{{ Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger glyphicon glyphicon-remove']) }}