避免将选项卡锚标记标题属性显示为工具提示
jQuery 1.7.1 - 我在 JSP 中使用 jQuery 选项卡小部件,并使用以下代码来表示选项卡,
<div id="tabs">
<ul>
<li><a href="t1" title="content">Gallery</a></li>
<li><a href="t2" title="content">Polls</a></li>
<li><a href="t3" title="content">Events</a></li>
</ul>
<div id="content"></div>
</div>
这 3 个选项卡在浏览器中显示正常,但是当我将鼠标悬停在选项卡上时,“内容”将显示为工具提示在 Chrome、Firefox 和 IE 中。任何避免将“内容”视为工具提示并提供实际工具提示(例如“单击查看图库”等)的方法。
编辑:我使用 title 属性来指定用于加载 ajax 内容的容器, http://jqueryui.com/demos/tabs/#Ajax_mode
jQuery 1.7.1 - I'm using jQuery tabs widget in my JSP and have the following code to represent tabs,
<div id="tabs">
<ul>
<li><a href="t1" title="content">Gallery</a></li>
<li><a href="t2" title="content">Polls</a></li>
<li><a href="t3" title="content">Events</a></li>
</ul>
<div id="content"></div>
</div>
These 3 tabs appear OK in the browser, but when I mouse over the tabs 'content' is getting displayed as a tool tip in Chrome, Firefox and IE. Any way to avoid seeing 'content' as tool tip and provide the actual tool tip like 'Click to see Gallery' etc.
EDIT: I use title attribute to specify the container for loading ajax content,
http://jqueryui.com/demos/tabs/#Ajax_mode
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您绝对必须拥有
title
属性,那么您可以尝试在mouseover
上暂时删除它。If you absolutely have to have the
title
attribute then you could try removing it temporarily onmouseover
.试试这个
try this