如何在表格行周围放置 cftooltip?
我试图在表格行上放置一个工具提示,以便当您将鼠标悬停在该行的任何部分上时,工具提示会显示。当我将 cftooltip 标签放在整个表格周围时,它可以工作,当我将它放在 td 元素中时,它可以工作,但是当我将它放在 td 或 tr 元素周围时,不会显示任何内容。 有什么建议吗?谢谢!
I'm trying to put a tooltip on a table row so that when you hover over any part of the row the tooltip displays. When I put the cftooltip tag around the entire table it works, and when I put it within a td element it works, but nothing displays when I put it around td or tr elements.
Any suggestions? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我这样做似乎有效。请注意
标记中缺少结尾
>
。如果您将其留在那里,它将显示为额外的>
I did this which seems to work. Note the lack of ending
>
in the<TD>
tag. If you leave it in there, it displays as an extra>
Cftooltip有tooltip属性,它实际上是要显示的工具提示。您需要在此处传递值,以便将鼠标悬停在该行上时将其显示为文本。
Cftooltip has tooltip attribute which actually is the tooltip to be displayed. You need to pass your values here to display it as text when hovering over the row.