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.
当我移动鼠标悬停一些 html 标签时,我使用 jquery 呈现工具提示。在这种情况下,它是 span 标签。我想将要显示到工具提示中的文本存储在该跨度标记中。
我使用大多数 span 标签,但如果我将文本存储到“title”属性中,我的浏览器也会显示一个工具提示对话框
我建议使用自定义data-*属性,例如(例如):
data-*
<span data-tooltipText="text to show with the tooltip plugin">Text here</span>
这些属性在 HTML 5 下有效(并且将在 HTML 4 下工作,尽管它们不会验证)。
参考: