有一个列表(其中项目没有 id)如何使 div 弹出窗口出现在鼠标悬停时?

发布于 2024-10-31 13:59:25 字数 569 浏览 1 评论 0原文

所以我有一个类似

<ul id="usersList">
   <li><form>
       <input class="eButton" type="button" value="robot669394444"
              onClick="openWin('robot669394444',1280,720)">
   </form></li> 
   <li><form>
       <input class="eButton" type="button" value="robot6693925"
              onClick="openWin('robot6693925',1280,720)">
   </form></li> 
</ul>

div 的列表,其 id 类似 PoPa。我想要一个 jQuery 函数,使该 div 看起来像用户鼠标悬停在按钮顶部的工具提示,并在该 div 中显示该项目值?

so I have a list like

<ul id="usersList">
   <li><form>
       <input class="eButton" type="button" value="robot669394444"
              onClick="openWin('robot669394444',1280,720)">
   </form></li> 
   <li><form>
       <input class="eButton" type="button" value="robot6693925"
              onClick="openWin('robot6693925',1280,720)">
   </form></li> 
</ul>

and empty div with id like PoPa. I want to have jQuery function that would make that div appear like a tool-tip on top of the button user mouse is over and show in that div that item value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

老旧海报 2024-11-07 13:59:25
$("#usersList .eButton").hover(function(){
    //show & position tooltip here
}, function(){
    //hide tooltop here
});
$("#usersList .eButton").hover(function(){
    //show & position tooltip here
}, function(){
    //hide tooltop here
});
夜夜流光相皎洁 2024-11-07 13:59:25

您正在寻找这样的内容:

$('#usersList input[type=button]').hover(
    function() { /* Position and show #PoPa */ },
    function() { /* Hide #PoPa              */ }
);

您想要的文本将位于 this.value (或 $(this).val() 如果您有 $ (this) build for other use) 当第一个回调被调用时。

You're looking for something like this:

$('#usersList input[type=button]').hover(
    function() { /* Position and show #PoPa */ },
    function() { /* Hide #PoPa              */ }
);

The text you want will be in this.value (or $(this).val() if you have $(this) build for other uses) when the first callback is called.

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