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

How to change tooltip of a div tag through Javascript?

目前我正在使用 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

检查它是否与您在 jquery

中所做的一样
document.getElementById("test").title = document.getElementById("test").title + 'text to append';