我想在 MVC3 的文本框中插入一条消息,例如在此处输入类型。
我该怎么做?
可以在字段声明的Model类中完成吗?
请问有什么办法吗?
您可以使用 HTML5占位符。适用于 chrome 和 firefox。您可以使用modernizr使其在IE 和其他较旧的浏览器中运行。
@Html.TextBoxFor(model => model.Name,new { placeholder = "Fill in your name" })
@Html.TextBox("Place textbox name here", "Place default value here")
@Html.TextBoxFor(Model field declaration here, new { Value = "Place default value here" }
如果你想使用输入掩码,那么你可以看看这里jquery input mask