2013-03-26 131 views
0

我想在firefox的contextmenu中的menuitem前後添加菜單分隔符。
這是我期望的輸出...
如何在firefox的上下文菜單中爲menuitem添加菜單分隔符

 
|      | 
|      | 
|Select All   | 
|---------------------| 
|Show Meaning   | 
|---------------------| 
|      | 

我的代碼...

<popup id="contentAreaContextMenu"> 
     <menuseparator /> 
     <menuitem id="diction-show-meaning" label="Show meaning" oncommand="" insertafter="context-selectall"/> 
     <menuseparator /> 
    </popup> 

但是菜單分隔符出現在上下文菜單的末尾!

如何爲contentAreaContextMenu包含菜單項? 我不喜歡通過Java腳本動態地做到這一點。但是,讓我知道這是唯一可行的辦法...

+0

有人!請跟我說話! – user1422163 2013-03-27 15:02:15

+0

選中此項:http://code.metager.de/source/xref/mozilla/thunderbird/suite/common/contentAreaContextOverlay.xul – linguini 2013-03-27 19:34:31

回答

1

嘗試

<popup id="contentAreaContextMenu"> 
    <menuitem id="diction-show-meaning" label="Show meaning" oncommand="" insertafter="context-sep-selectall"/> 
    <menuseparator /> 
</popup> 
相關問題