0

我正在编写 firefox 扩展,我只是想知道是否可以在我包含到这个 xul 的 .js 文件中使用 xul 的“oncommand”。这听起来可能很愚蠢,但我决定要求 100% 确定这是不可能的(或可能的 :))

我可以在这种情况下使用它(xul 文件):

  <toolbarpalette id="BrowserToolbarPalette">
   <toolbarbutton id="quizy-toolbar-button"
      class="toolbarbutton-1 chromeclass-toolbar-additional"
      label="test"
      tooltiptext="test button"
      oncommand="engine.iconCommand()"
   />
 </toolbarpalette>

在我包含的 .js 中不起作用。

 document.oncommand = function(e){
   alert('tango down');
 };
4

1 回答 1

3

不,没有oncommand属性(观看错误 246720)。

但是你可以监听command事件,这毕竟是正确的方式。

于 2013-09-04T14:59:20.020 回答