Asp.net mvc Can';t为MVC操作链接添加引导图标组件

Asp.net mvc Can';t为MVC操作链接添加引导图标组件,asp.net-mvc,twitter-bootstrap,asp.net-mvc-4,actionlink,glyphicons,Asp.net Mvc,Twitter Bootstrap,Asp.net Mvc 4,Actionlink,Glyphicons,我尝试为MVC操作链接添加引导Glyphicon组件,但我无法添加,请给我一个解决方案 行动链接 @Html.ActionLink("Add", null/*"BlankEditorRow"*/, null, new { id = "addItem", @class = " btn-xs" }) 加上字形 <span class="glyphicon glyphicon-plus"></span> 将glyphicon glyphicon plus类添加到Acti

我尝试为MVC操作链接添加引导Glyphicon组件,但我无法添加,请给我一个解决方案

行动链接

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

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

glyphicon glyphicon plus
类添加到
ActionLink
中,如下所示。希望这对你有帮助

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