我试试
@Html.HiddenFor(x => x.StateAbbreviation, new { @placeholder = "State" })
文本框是一个下拉字段,因此我使用@Html.HiddenFor
但是州没有出现在文本框中。
我只想向用户展示热门。
答案 0 :(得分:0)
HiddenFor
帮助生成<input type="hidden" />
:
@Html.TextBoxFor(x => x.StateAbbreviation, new { placeholder = "State" })
无论如何,您的代码看起来正确,除非您不需要像这样逃避placeholder
:
@Html.HiddenFor(x => x.StateAbbreviation, new { placeholder = "State" })