ASP.NET MVC3 中具有多个类的 ActionLink

发布于 2024-12-20 19:04:48 字数 201 浏览 1 评论 0原文

我很好奇,是否可以在 MVC3 Razor 语法中的 ActionLink 上使用多个 CSS 类? 下面的行似乎仅加载第一个类(btn)并跳过 btn_c。

@Html.ActionLink("Administration", "Index", "Admin", null, new { @class = "btn btn_c" })

I'm curious, is it possible to use multiple CSS classes on an ActionLink in MVC3 Razor syntax?
The line below appears to load only the first class(btn) and skipps btn_c.

@Html.ActionLink("Administration", "Index", "Admin", null, new { @class = "btn btn_c" })

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若无相欠,怎会相见 2024-12-27 19:04:48

我刚刚将您现有的 ActionLink 与以下 css 一起使用:

.btn
{
    color: yellow;
}

.btn_c
{
    background-color: red;
}

它成功生成了以下输出:

LinkOutput

I've just used your existing ActionLink with the following css:

.btn
{
    color: yellow;
}

.btn_c
{
    background-color: red;
}

And it successfully produced the following output:

LinkOutput

墨小墨 2024-12-27 19:04:48

我在引导类方面遇到了这个问题,我没有另一个类覆盖引导类。事实上,我通过开发工具验证了我可以将“active”类添加到“nav-link”类中。

这是我的剃刀代码:

@Html.ActionLink("Statement Info", "Edit", new { Controller = ViewBag.MyContoller}, new { name = "navAction", id = "Statements", @class = "nav-link active"})

当我在开发工具中查看元素时,它只有“nav-link”类

I am having this exact problem with bootstrap classes, I do not have another class overriding the bootstrap classes. In fact I verified through dev tools that I can add the "active" class to the "nav-link" class.

Here is my razor code:

@Html.ActionLink("Statement Info", "Edit", new { Controller = ViewBag.MyContoller}, new { name = "navAction", id = "Statements", @class = "nav-link active"})

When I view the element in dev tools, it only has the "nav-link" class

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文