jQuery:多个“醉酒”工具提示
当我从数据库中带回结果列表时,它们显示如下:
结果1
结果2
结果3
等等...现在我已经让 jQuery Tipsy 插件开始工作,因此当您将鼠标悬停在结果 1 的顶部时,它会显示该人员的用户名。问题是,如果我将鼠标悬停在结果 2 上,也应该出现 Tipsy 工具提示,但它只是显示正常的浏览器工具提示。
我假设这是因为结果 a
标记上的所有 id
的名称都相同:“east”。我想我需要对 jQuery 中的每个检查进行某种操作,但我不太清楚在 jQuery 中将其添加到哪里。
有人有解决这个问题的方法吗?
When I bring back a list of results from my database, they are displayed like so:
Result 1
Result 2
Result 3
And so on... Now I've got the jQuery Tipsy plugin working so when you hover over the top of Result 1 it shows that persons users name. The thing is, if I hover over Result 2, that too should have the Tipsy tooltip appear, but it is just displaying the normal browsers tooltip.
I'm assuming it's because all the id
's on the results a
tag's are name the same: 'east'. I guess I need to make some sort of for each check in the jQuery yet I wouldn't have the foggiest on where to add this in the jQuery.
Has anyone got a solution to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题是所有 3 个
a
标签上的 ID 相同。在任何情况下都不允许将相同的 ID 应用于同一页面上的多个元素。你需要解决这个问题。您可以将同一个类应用于所有三个
a
标记,然后将 Tipsy 应用于该类。或者你可以单独做每个ID。
Your problem is having the same ID on all 3
a
tags. Under no circumstance is it acceptable to have the same ID applied to more than one element on the same page. You'll need to fix that.You can apply the same class to all three
a
tags and then apply tipsy to the class.Or you can do each ID separately.