我正在使用ASP.Net MVC(5.2.3.0)创建一个表单字段:
@Html.TextBoxFor(
x => x.UserName,
new {
@class = "form-control",
placeholder = "Enter your username",
required = true,
autofocus = true
});
到目前为止,一切都很好,但是现在我希望将autofocus属性设置为条件.我该怎么办?
Note: The values “true” and “false” are not allowed on boolean
attributes. To represent a false value, the attribute has to be
omitted altogether.
以下内容在MVC中不起作用,因为它仍然呈现autofocus属性,导致浏览器进行自动聚焦:
autofocus = String.IsNullOrEmpty(this.Model.UserName)
autofocus = String.IsNullOrEmpty(this.Model.UserName) ? null : ""`
有人知道如何解决这个问题吗?
解决方法:
您可以在视图之前的某个位置创建属性字典:
@{
var usernameAttrs = new Dictionary<string, object>
{
{"class ", "form-control"},
{"placeholder ", "Enter your username"},
{"required", true},
};
if (String.IsNullOrEmpty(this.Model.UserName))
{
usernameAttrs.Add("autofocus", true);
}
}
并在TextBoxFor()中使用它
@Html.TextBoxFor(x => x.UserName, usernameAttrs);
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。