10

我的 .cshtml 中有以下代码:

 @Html.TextArea("txtComments", new { style = "width: 450px;", placeholder = "Enter Comments here" })

但是占位符根本不显示。我错过了什么吗?

来源:

<textarea cols="20" id="txtComments" name="txtComments" placeholder="Enter Comments here" rows="2" style="width: 450px;">
</textarea>
4

2 回答 2

15

在样式和占位符之前放一个@,就像这样,甚至可以放在htmlAttributes:它之前。

@Html.TextArea("txtComments", htmlAttributes: new { @style = "width: 450px;", @placeholder = "Enter Comments here" })

这是我得到的确切输出:

<textarea cols="20" id="txtComments" name="txtComments" placeholder="Enter Comments here" rows="2" style="width: 450px;"></textarea>

如果显示占位符但仍未显示,请确保您使用的是最新的网络浏览器,您可以在此处找到支持的浏览器列表:http: //caniuse.com/input-placeholder

< IE10 does not support it.

如果您确实需要这些浏览器的支持,也许这个解决方案会对您有所帮助:http ://webdesignerwall.com/tutorials/cross-browser-html5-placeholder-text

于 2013-02-22T09:52:14.833 回答
0

这个对我有用(asp.net v4.6.2 mvc5):

@Html.TextAreaFor(model => model.MyMessageForm.MessageText, new { placeholder = "Your msg here...", @class = "form-control" } )
于 2018-11-02T08:32:57.870 回答