0

我想在 MVC3 的文本框中插入一条消息,例如在此处输入类型。

我该怎么做?

可以在字段声明的Model类中完成吗?

请问有什么办法吗?

4

2 回答 2

3

您可以使用 HTML5占位符。适用于 chrome 和 firefox。您可以使用modernizr使其在IE 和其他较旧的浏览器中运行。

如何为占位符设置modernizr

@Html.TextBoxFor(model => model.Name,new { placeholder = "Fill in your name" })
于 2012-07-05T09:39:29.710 回答
1
@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

于 2012-07-05T09:00:41.150 回答