获取 jQuery 工具提示,以便在页面首次加载时提示处于活动状态

发布于 2024-09-12 12:46:19 字数 570 浏览 5 评论 0原文

我在图像地图上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

始终不够 2024-09-19 12:46:19

当页面加载完成后,您可以触发鼠标悬停。

$("[name='Map']").trigger("mouseover");

When the page is finished loading you can trigger the mouseover.

$("[name='Map']").trigger("mouseover");
猫九 2024-09-19 12:46:19

您可以将鼠标集中在地图的首选部分或触发激活工具提示的事件(可能是悬停)。

You could focus mouse on preferable part of the map or trigger event (probably hover) that activates tooltip.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文