gpt4 book ai didi

css - 带有 Twitter Bootstrap 的 ActionLink 上的图像

转载 作者:太空宇宙 更新时间:2023-11-03 19:33:05 26 4
gpt4 key购买 nike

我现在有一个按钮,在我的 MVC 应用程序中呈现为:

@Html.ActionLink("Delete", "DeleteTransfer", "Transaction", new { transferId = (Model.Id) }, new { @class = "btn btn-danger", @onclick = "return confirm('Are you sure you want to delete this Transfer?')" })

我想使用 Twitter Bootstrap 类来添加图标。但是,为此,代码将如下所示:

<button class="btn btn-danger"><i class="icon-white icon-trash"></i> Delete</button>

如何在我的 ActionLink 中应用它?它在按钮中嵌入了一个图像 (i)。

最佳答案

尝试:

      <a class="btn btn-danger" 
href="@Url.Action("DeleteTransfer", "Transaction", new { transferId = (Model.Id) })"
onclick = "return confirm('Are you sure you want to delete this Transfer?');"
>
<i class="icon-white icon-trash">Delete</i>
</a>

根据您的路线,您可能需要:

@Url.Action("DeleteTransfer", "Transaction", new { transferId = (Model.Id) }, null)

关于css - 带有 Twitter Bootstrap 的 ActionLink 上的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21359428/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com