我正在寻找允许以下类型行为的 jQuery 工具提示插件。
<a href="somewhere.html">
<span>
<img src="someimage.jpg" style="display: none;" />
Here is the tooltip content.
</span>
Here is the link to somewhere.
</a>
我希望的行为是将鼠标悬停在“这里是某个地方的链接”上,并弹出一个工具提示,显示包含“someimage.jpg”和“这里是工具提示内容”的跨度内容。
我希望工具提示跟踪以及鼠标在链接上的移动以及工具提示的外观(背景颜色、不透明度、边框颜色等)是可配置的。
我发现的两个最受欢迎的工具提示“clueTip”和 Jörn Zaefferer 的“工具提示”似乎不符合要求,除非我遗漏了什么。
最终,链接和图像将动态生成。