0

我目前有这个代码

@if(true) { <text> <td class="add"></td> </text> } else { <text> <td class="remove"></td> </text> }

我想切换到这样的东西

<td> @if(true) { <text> @class="add" </text> } else { <text> @class="remove" </text> }</td>

我不确定这是否正确,或者它的正确语法

4

1 回答 1

0
@functions {
    object getAttributes(bool val)
    {
        if (val)
        {
            return new {@class="add"};
        }
        return new { @class="remove"};
    }
}

<td>
@Html.TextBoxFor(model => model.FirstName,@getAttributes(style))   
@getAttributes(style)
<td>
于 2013-01-28T23:15:59.343 回答