我在图像地图上使用 jQuery 工具提示插件。当图像的一部分悬停时,会出现提示。这是使用以下代码激活的:
$(function() {
$("map > area").tooltip({ positionLeft: true });
});
图像映射的 html 设置如下:
<map name="Map">
<area shape="rect" coords="36,466,64,507" href="link.aspx" alt="Alt Title" title="ToolTip Title" />
<area shape="rect" coords="36,466,64,507" href="link.aspx" alt="Alt Title2" title="ToolTip Title2" />
</map>
我想让其中一个工具提示在页面首次加载时处于活动(或悬停)状态。我很难弄清楚如何做到这一点,或者是否有可能。
有没有人使用过这个插件并对我如何实现这个功能有任何想法?