我已使用以下代码添加 css 类,@Html.TextBox
但这仅适用@Html.TextBoxFor
于@Html.TextBox
.
@Html.TextBox("ticket_new_attachment_attributes_0_description", new { @class= "bigfield"})
我错过了什么?
我已使用以下代码添加 css 类,@Html.TextBox
但这仅适用@Html.TextBoxFor
于@Html.TextBox
.
@Html.TextBox("ticket_new_attachment_attributes_0_description", new { @class= "bigfield"})
我错过了什么?
尝试这个
@Html.TextBox("ticket_new_attachment_attributes_0_description", null, new { @class= "bigfield"})
对于@Html.TextBox,第二个参数是文本框值,所以你可以将“”作为文本框值传递,第三个参数是 Html 属性
试试下面的 html :
@Html.TextBox("ticket_new_attachment_attributes_0_description", "", new { @class= "bigfield"})