使用 Jquery 选择标题标签内的元素
我有一些像这样的html代码。
<a href="http://www.google.com.pk" id="goog" title="<table width='20%' border='1'> <tr> <td>ABC</td> <td>DEF</td> </tr></table>"> Go to Google </a>
当用户将鼠标悬停在表内的表 td 标记且表位于标记内时,我想调用警报函数。
用Jquery可以吗?
提前致谢
I have some html code like this.
<a href="http://www.google.com.pk" id="goog" title="<table width='20%' border='1'> <tr> <td>ABC</td> <td>DEF</td> </tr></table>"> Go to Google </a>
I want to call alert function when user will hover to table td tag which is inside to Table and table is inside of tag.
Is it possible with Jquery?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
title 属性中不允许使用 HTML。
看看这个,作为如何实现 CSS 工具提示的众多解决方案之一:
http:// Sixrevisions.com/css/css-only-tooltips/
HTML is not allowed within the title attribute.
Have a look at this, as one of many solutions how to achive CSS tooltips:
http://sixrevisions.com/css/css-only-tooltips/