gpt4 book ai didi

html - 如何删除工具提示但保留 'title' 属性值

转载 作者:行者123 更新时间:2023-11-28 05:24:36 25 4
gpt4 key购买 nike

<a href="this is tooltip" title="This is a test">Test</a>

有没有办法在将鼠标悬停在 a 元素上时删除工具提示,但仍保留 title 属性值?

Demo

最佳答案

title 属性的全部目的是保存工具提示的文本,以便更好地访问;它是每个现代浏览器的内置功能。

如果您不需要工具提示功能,请不要使用 title 属性。您也可以使用 data attributes将文本值附加到任何元素,然后像这样检索它:

HTML

<a href="http://google.com" data-title="This is a test">Test</a>

JS

$('a').data('title'); // "This is a test";

关于html - 如何删除工具提示但保留 'title' 属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34380703/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com