无法向@Html.TextAreaFor 添加样式和占位符

Unable to add styles and place holder to @Html.TextAreaFor

我正在使用以下 html 标签:

@Html.TextAreaFor(Model => Model.TaxID, 
 new {styles = "width:30%; border-color: black; maxlength: 9" @placeholder = "xxxxxxxxx"})

我无法检索样式的 none,最大长度超过 9 个字符,@placeholder 抛出错误。谁能帮我解决这个问题。

正确的做法是这样的,注意应该是"style"而不是"styles",而且你在stylestyle之间漏掉了一个, placeholdermaxlength 也应该在 style:

之外
new { placeholder = "xxx", maxlength=9, style = "width:30%; border-color: black;" }