是否可以使用html.textareafor通过工具提示显示字符串。

时间:2015-06-19 14:21:58

标签: c# html5 asp.net-mvc-5

我正在尝试使用MVC构建视图,我将使用html.textareafor,我想知道在输入字符串之前是否可以在此html.textareafor上使用工具提示。

2 个答案:

答案 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