我正在尝试使用MVC构建视图,我将使用html.textareafor,我想知道在输入字符串之前是否可以在此html.textareafor上使用工具提示。
答案 0 :(得分:0)
HTML工具提示源自title
属性,不是吗?你可以add custom HTML attributes给你的助手:
@Html.TextAreaFor(model => model.SomeValue, new { title = model.SomeTooltipValue })
答案 1 :(得分:0)
使用TextBoxFor,您将能够通过anonmous对象传递自定义属性值
html helper @ title =“help”可以解决问题
@Html.TextBoxFor(model => model.Title, new {@title="help text"})
请看这个链接。 Link