1

我使用在 MVC5 中创建的以下视图代码,我想将按钮样式更改为类似于论坛按钮(例如,在此堆栈论坛中提问按钮,添加按钮框架颜色等),我应该怎么做?目前它只是文本,当你用鼠标悬停它时,你会看到它下面的线......

<p>
    @Html.ActionLink("Create New Item", "Create")
</p>
4

3 回答 3

3

您只需要 css 来设置按钮样式。

在此处输入图像描述

<p>
    @Html.ActionLink("Create New Item", "Create", 
        null, htmlAttributes: new { @class = "mybtn"})
</p>
<style type="text/css">
    a.mybtn {
        background: #777;
        color: #fff;
        display: inline-block;
        padding: 6px 12px 6px 12px;
        text-decoration: none;
    }
</style>
于 2014-03-21T20:56:51.027 回答
2

使用重载

@Html.ActionLink("linktext", "action", "controller", routeValues: new { }, htmlAttributes: new { @class="" })

然后提供一个 CSS 类。

于 2014-03-21T20:54:25.493 回答
0

用这个:

<button type="submit" class="btn btn-labeled btn-info" onclick="location.href='@Url.Action(" Details ", "Movies
",new { id = item.Id})'" data-toggle="modal tooltip" data-target="" title="Details">
<span class="btn-label">
    <i class="glyphicon glyphicon-comment"></i>
</span>
Details

于 2018-09-12T23:30:06.617 回答