Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
试图在 IE7/8 鼠标悬停时从锚链接隐藏标题标签的内容。出于可访问性目的,需要保留标题标签(对于屏幕阅读器)。
<a title="Move" class="badge move" id="move"> <span>Move Folder</span></a> #move title { visibility: hidden; }
谢谢@大卫托马斯。找到了这个工作解决方案:
$(document).ready(function() { $('[title]').removeAttr('title'); });