如何通过Javascript更改div标签的工具提示?

时间:2016-03-10 08:48:16

标签: javascript jquery html jquery-tooltip

目前我正在使用Jquery将文本附加到这样的工具提示中;

$('#test').attr('title', $('#test').attr('title') + ' text to append');

我想知道的是,我如何通过javascript实现这一目标?

欢迎任何帮助,我做了一些研究,但没有运气。

Easy Tooltip content change via Javascript

Changing the tooltip of button dynamically in html

1 个答案:

答案 0 :(得分:3)

检查它是否像在jquery中一样工作

document.getElementById("test").title = document.getElementById("test").title + 'text to append';