Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个有 50 多行和 3 列的表。我想对每个单元格应用一个工具提示。这意味着每个单元格都有不同的工具提示文本。所以表格有 50*3 =150 个工具提示。
我们能做到吗?你能修改我的测试示例吗?
谢谢。
如果您使用的是 jQuery,我建议您使用实际的插件而不是您自己的插件,因为它会更完整且更易于使用(并且错误更少!)。我个人使用qTip插件取得了巨大成功。
在 mousemove 上更改 DIV 中的文本怎么样?这是我更新的小提琴。这基本上是我添加的所有内容:
$("#ToolTipDIv").text('Specific Tip for ' + $(this).text());