<%= Html.EditorFor(product => product.Name) %>
我需要将生成的输出设置为autocomplete =“off”属性。
我想念的是什么?
编辑:
我在寻找EditorFor的扩展方法,该方法接受属性的键/值字典,因此可以这样称呼它:
<%= Html.EditorFor(product => product.Name, new { autocomplete = "off" } ) %>
在此完成LabelFor,但需要针对EditorFor进行调整
public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, object htmlAttributes) {
return LabelFor(html, expression, new RouteValueDictionary(htmlAttributes));
}
public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, IDictionary<string, object> htmlAttributes)
{
ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, html.ViewData);
string htmlFieldName = ExpressionHelper.GetExpressionText(expression);
string labelText = metadata.DisplayName ?? metadata.PropertyName ?? htmlFieldName.Split('.').Last();
if (String.IsNullOrEmpty(labelText))
{
return MvcHtmlString.Empty;
}
TagBuilder tag = new TagBuilder("label");
tag.MergeAttributes(htmlAttributes);
tag.Attributes.Add("for", html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(htmlFieldName));
tag.SetInnerText(labelText);
return MvcHtmlString.Create(tag.ToString(TagRenderMode.Normal));
}
编辑2:
我意识到它不能命名为EditorFor,因为已经存在一个接受匿名类型的覆盖的EditorFor,请参阅http://msdn.microsoft.com/en-us/library/ff406462.aspx ..无论如何,我们可以用不同的方式命名它,没什么大不了的。
最佳答案
您需要使用自定义模板来生成带有属性的input元素,或者您可以向页面添加一些javascript以添加客户端属性。
<%= Html.EditorFor( product => product.Name, "NoAutocompleteTextBox" ) %>
然后在Shared/EditorTemplates中,您需要一个NoAutocompleteTextBox.ascx来定义
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<%= Html.TextBox("", ViewData.TemplateInfo.FormattedModelValue,
new { autocomplete = "off" }) %>
或者,以jQuery的方式,在所有文本输入上进行设置
$(function() {
$('input[type=text]').attr('autocomplete','off');
});
关于html - 如何使用EditorFor禁用输入字段的自动完成功能?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3308593/