将 css 类名传递给 asp.mvc 视图助手
在 ASP.NET MVC 视图助手中,您可以执行类似的操作
<%= Html.ActionLink("click me", "DoSomething", null, new { someAttribute = "a value" } ) %>
,将生成以下 HTML
<a href="DoSomething" someAttribute="a value">click me</a>
我的问题是....如果我想设置“class”属性怎么办?
<%= Html.ActionLink("click me", "DoSomething", null, new { class = "a-class-name" } ) %>
这不会编译,因为“class”是保留字。
有解决方法吗?
In ASP.NET MVC view helper, you can do something like
<%= Html.ActionLink("click me", "DoSomething", null, new { someAttribute = "a value" } ) %>
which will produce the following HTML
<a href="DoSomething" someAttribute="a value">click me</a>
My question is.... what if I want to set the "class" attribute?
<%= Html.ActionLink("click me", "DoSomething", null, new { class = "a-class-name" } ) %>
That won't compile because "class" is a reserved word.
Is there a work-around?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,使用 @literal :
Yes, using the @ literal: