无法为 MVC 操作添加 Bootstrap Glyphicon 组件 link

Can't add the Bootstrap Glyphicon Components for the MVC action link

我尝试为 MVC 操作添加 Bootstrap Glyphicon 组件 link,但我无法添加,请给我一个解决方案。

操作Link

 @Html.ActionLink("Add", null/*"BlankEditorRow"*/, null, new { id = "addItem", @class = " btn-xs" })

加字形

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

glyphicon glyphicon-plus class 添加到 ActionLink,如下所示。希望对您有所帮助。

 @Html.ActionLink("Add", null/*"BlankEditorRow"*/, null, new { id = "addItem", @class = "glyphicon glyphicon-plus btn-xs" })