获取 jQuery 工具提示,以便在页面首次加载时提示处于活动状态
我在图像地图上使用 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>
我希望在页面首次加载时让其中一个工具提示处于活动(或悬停)状态。我很难弄清楚如何做到这一点,或者是否可能。
有人使用过这个插件并对我如何实现这个功能有任何想法吗?
I'm using the jQuery tooltip plug in on an image map. When a part of the image is hovered over, the tip appears. This is activated with the following code:
$(function() {
$("map > area").tooltip({ positionLeft: true });
});
The html for the image map is set up like this:
<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>
I'd like to have one of the tool tips be in the active (or hovered) state when the page first loads. I'm having a hard time figuring out how to do this, or if it is even possible.
Has anybody used this plugin and have any ideas of how I could implement this feature?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当页面加载完成后,您可以触发鼠标悬停。
When the page is finished loading you can trigger the mouseover.
您可以将鼠标集中在地图的首选部分或触发激活工具提示的事件(可能是悬停)。
You could focus mouse on preferable part of the map or trigger event (probably hover) that activates tooltip.