有一个列表(其中项目没有 id)如何使 div 弹出窗口出现在鼠标悬停时?
所以我有一个类似
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找这样的内容:
您想要的文本将位于
this.value
(或$(this).val()
如果您有$ (this)
build for other use) 当第一个回调被调用时。You're looking for something like this:
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.