firefox扩展:无法在按钮上添加图标

时间:2016-02-24 19:31:17

标签: javascript firefox firefox-addon

我有一个按钮的代码块,我将添加到选项卡右键单击上下文菜单

var playButton = doc.createElementNS(ns,"button");
playButton.setAttribute("id", "contexttab-newtab");
playButton.setAttribute("label", _("newtab_string"));
playButton.setAttribute("accesskey", _("newtabaccesskey_string"));
playButton.setAttribute("oncommand", "BrowserOpenTab();");
playButton.setAttribute("icon", "./icon-16.png");

然而,它没有显示任何按钮。图标本身位于data/icon-16.png,因为我认为它应该是。 '图像'也不起作用。我做错了什么?

Screenshot of button-less context menu

完整代码的Pastebin:http://pastebin.com/4FeZSScy

0 个答案:

没有答案