14

我正在尝试在 EditorTemplate 上向 Html.LabelFor 添加一个 CSS 类

 @Html.LabelFor(model => model.Name, new { @class = "myLabel" })

例如,我的期望:label 应该选择 css 类。

为此,我尝试使用以下代码扩展标签,但我的标签未显示。我在这里做错了什么?

 public static class LabelExtensions
    {
        public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, object htmlAttributes)
        {
            return html.LabelFor(expression, null, htmlAttributes);
        }

        public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, string labelText, object htmlAttributes)
        {
            return html.LabelHelper(
                ModelMetadata.FromLambdaExpression(expression, html.ViewData),
                ExpressionHelper.GetExpressionText(expression),
                HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes),
                labelText);
        }

        private static MvcHtmlString LabelHelper(this HtmlHelper html, ModelMetadata metadata, string htmlFieldName, IDictionary<string, object> htmlAttributes, string labelText = null)
        {
            var str = labelText
                ?? (metadata.DisplayName
                ?? (metadata.PropertyName
                ?? htmlFieldName.Split(new[] { '.' }).Last()));

            if (string.IsNullOrEmpty(str))
                return MvcHtmlString.Empty;

            var tagBuilder = new TagBuilder("label");
            tagBuilder.MergeAttributes(htmlAttributes);
            tagBuilder.Attributes.Add("for", TagBuilder.CreateSanitizedId(html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(htmlFieldName)));
            tagBuilder.SetInnerText(str);

            return tagBuilder.ToMvcHtmlString(TagRenderMode.Normal);
        }

        private static MvcHtmlString ToMvcHtmlString(this TagBuilder tagBuilder, TagRenderMode renderMode)
        {
            return new MvcHtmlString(tagBuilder.ToString(renderMode));
        }
    }

例如,如果我没有指定 css 类 @Html.LabelFor(model => model.Name) ,那么它会显示标签。但我无法将 css 应用于我的标签。我想在页面加载时以蓝色显示标签。然后使用 jquey 根据用户操作更改标签样式。一切都很好,在我的页面上,除了我无法扩展和添加 css 类到我的标签。

4

2 回答 2

16

我怀疑您忘记将定义此 LabelExtensions 类的名称空间带入视图的范围内。例如,如果这个类是在MyProject.Extensions命名空间内定义的:

namespace MyProject.Extensions
{
    public static class LabelExtensions
    {
        ...
    }
}

确保您已将此命名空间纳入范围:

@using MyProject.Extensions
@model MyViewModel
...
@Html.LabelFor(model => model.Name, new { @class = "myLabel" })
于 2012-05-15T14:36:58.373 回答
0

您正在使用 html.LabelHelper

但是您已经定义了自己的 LabelHelper 方法,所以使用它 =)

于 2016-04-29T12:30:54.970 回答