标题属性在 Firefox Addon 中不起作用

Title Attribute not working in Firefox Addon

我正在开发一个 mozilla firefox 插件。我的 firefox 扩展面板中的图标需要悬停工具提示。当我使用 title 属性时,工具提示不显示。建议我一个解决方案。

P.S : 我指定的是 firefox 插件或扩展,而不是浏览器

提前致谢

通常你只需要这样做:

myElement = document.createElement("someXULtagName");
myElement.setAttribute("tooltiptext","My tooltip text");

但是在面板内部(至少是非 SDK 面板)如果你包含 HTML 元素而不是 XUL 元素,你必须做更多的工作:

myPanelview = document.createElement('panelview');
myPanelview.setAttribute('tooltip', 'aHTMLTooltip');
...
myElement = document.createElementNS('http://www.w3.org/1999/xhtml', "someHTMLtagName");
myElement.setAttribute("title","My tooltip text");