0

我嘗試爲MVC操作鏈接添加Bootstrap Glyphicon組件,但是我不能添加這個,請給我一個解決方案。無法爲MVC操作鏈接添加Bootstrap Glyphicon組件

操作鏈接

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

加雕文

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

[在@ Html.ActionLink MVC asp.net插入Glyphicons引導]的可能的複製(http://stackoverflow.com/questions/23049256/insert-glyphicons-bootstrap-in-html-actionlink-mvc- ASP-網) – ramiramilu

回答

2

添加glyphicon glyphicon-plusActionLink像以下。希望這會幫助你。

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