我在我的 C# MVC4 应用程序中使用显示模板来构造我希望我的自定义模型如何显示在我的视图中的数据表中。对于数据表,我使用 datatables.net。在下面的代码中,我给每个<td>
类名“对齐”,但是当我运行应用程序并检查元素时,分配的类名在末尾有一个空格,例如“对齐”
@using System;
@model MyProject.Models.CellValueViewModel
<td class="aligned">
@{if(Model.Value.StartsWith("<input type='checkbox'"))
{
@Html.Raw(Model.Value);
}
else if(Model.Value == String.Empty)
{
@Html.Encode(0.00);
}
else
{
@Html.DisplayFor(x => x.Value);
}
}
</td>
谁能提供为什么会这样?