gpt4 book ai didi

css - 我们可以在 Mvc3 中将 Model.item.value 作为 CSS 类传递吗?

转载 作者:行者123 更新时间:2023-11-28 11:44:09 25 4
gpt4 key购买 nike

我有一个疑问:我们可以将 Model.item.value 传递给 MVC3 中的 CSS 类吗?

例如:

@foreach (var items in Model)
{
@Html.TextBox(@items.ShortDesc, @items.SfldDefault, new { @class = "@items.ShortDesc"})
}

我想打印我的 @items.ShortDesc 作为 CSS 类,但它在这里将它作为一个字符串。有什么想法吗?

最佳答案

你只需要在没有引号和 @ 符号的情况下编写它(不需要那些,因为你已经在代码块中):

@Html.TextBox(items.ShortDesc, items.SfldDefault, new { @class ="abc "+ items.ShortDesc })

关于css - 我们可以在 Mvc3 中将 Model.item.value 作为 CSS 类传递吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13523231/

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