当用户鼠标悬停在动作链接上时,如何显示评论?我正在使用gridview,这是我的一个包含操作链接的列:
grid.Column(header: "", format: (item) => Html.ActionLink("Détails", "Details",
new { id = item.id_projet}, new { @class = "details" }), style: "actions")
答案 0 :(得分:3)
你的意思是冠军?
grid.Column(header: "", format: (item) => Html.ActionLink("Détails", "Details",
new { id = item.id_projet}, new { @class = "details", @title = "text here" }),
style: "actions")
如果您悬停链接,则会显示文字text here
。