更改mozilla插件工具提示框的样式
Alter the style of the tooltip box of mozilla addon
我正在使用以下代码来显示我的 mozilla 插件面板的标题:
require('sdk/view/core').getActiveView(Pnael_Name).setAttribute('tooltip', 'aHTMLTooltip');
它显示了我的 HTML
文件的标题标签中的内容。
但是我想修改tooltip box
或者自定义tooltip box
的高度和宽度。我该怎么做?
您使用的 tootltip
属性有误。您应该使用 xul 命名空间创建元素,将其附加到文档(尝试将其附加到面板中),确保在您附加的这个面板上设置 id 属性。
然后setAttribute('tooltip','id you set on that panel').
您可以对该面板进行风格化和做任何事情。
如果您只想使用文本工具提示,则设置 tooltiptext
属性而不是 tooltip
。
How to make a Firefox Extension URL Button show a string when hovered over
我正在使用以下代码来显示我的 mozilla 插件面板的标题:
require('sdk/view/core').getActiveView(Pnael_Name).setAttribute('tooltip', 'aHTMLTooltip');
它显示了我的 HTML
文件的标题标签中的内容。
但是我想修改tooltip box
或者自定义tooltip box
的高度和宽度。我该怎么做?
您使用的 tootltip
属性有误。您应该使用 xul 命名空间创建元素,将其附加到文档(尝试将其附加到面板中),确保在您附加的这个面板上设置 id 属性。
然后setAttribute('tooltip','id you set on that panel').
您可以对该面板进行风格化和做任何事情。
如果您只想使用文本工具提示,则设置 tooltiptext
属性而不是 tooltip
。
How to make a Firefox Extension URL Button show a string when hovered over