3

我正在尝试使用剃须刀助手添加诸如 .etc 之类class的属性。style我怎样才能做到这一点?

例子:@Html.LabelFor(model => model.First)

4

2 回答 2

4

您需要使用 New 关键字,并且可以像这样添加 HTML 属性:

@Html.LabelFor(model => model.First, new { @class = "test", id = "Lbl1"}))

等等。您可以在新的 {} 中继续添加 HTML 属性。

于 2013-09-26T19:01:34.443 回答
2

@Html.LabelFor(model => model.First, new Dictionary<string, object>() { { "class", "class-name" }, { "style", "display:none" } });

这就是你的意思吗?

于 2013-09-26T17:21:34.613 回答