4

我有一組按鈕如何在mvc actionlink語法中添加引導映像?

<div ><span class="font-icon-group"> 
@Html.ActionLink("Group button", "Index", "Groups",null ,new {@class="btn", @id="A" }) 
</div> 

下面的代碼,但這是錯誤的,因爲字體圖標組羣鍵以外即將到來。

我怎麼能把它放在按鈕裏面請引導我(mvc語法代碼需要更改上面的代碼)。

與純HTML它工作正常代碼HTML是以下幾點:

<div> 
<a class="btn" href="#" id="A1"><span class="font-icon-group"></span> All Groups</a></div> 

請指導改變語法MVC。

回答

7

使用Url.Action和格式的HTML,但是你想要的。

<div> 
    <a class="btn" href="@Url.Action("Index", "Groups")" id="A1"> 
    <span class="font-icon-group"></span> All Groups 
    </a> 
</div> 

我更喜歡使用部分意見和模板,而不是HTML生成助手,特別喜歡引導框架內工作時。

0

Regular MVC Html Helpers不支持HTML。你必須編寫一個自定義的Html Helper。

TwitterBootstrapMVC對此有支持。你會寫這樣的東西:

@Html.Bootstrap().ActionLink("<span class='font-icon-group'></span> All Groups", "Index", "Groups").Id("A") 
相關問題