我试着为MVC动作链接添加引导糖分组件,但我不能添加这个,请给我一个解决方案。
动作链接
@Html.ActionLink("Add", null/*"BlankEditorRow"*/, null, new { id = "addItem", @class = " btn-xs" })+雕文
<span class="glyphicon glyphicon-plus"></span>发布于 2016-01-07 09:44:51
将glyphicon glyphicon-plus类添加到ActionLink中,如下所示。希望这能帮到你。
@Html.ActionLink("Add", null/*"BlankEditorRow"*/, null, new { id = "addItem", @class = "glyphicon glyphicon-plus btn-xs" })https://stackoverflow.com/questions/34650132
复制相似问题