0

如果用户右键单击选择或右键单击图像,我想在上下文菜单中显示菜单项。

目前我正在使用此代码,但不幸的是,如果我右键单击作为用户选择的一部分的图像,它会显示菜单项两次。

contextMenu.Item({
    label: contextMenuItemLabel,
    contentScriptFile: contextMenuItemContentScriptFiles,
    context: contextMenu.SelectionContext(),                
        onMessage: function (posted) { someFunction(posted) }               
});

contextMenu.Item({
    label: contextMenuItemLabel,
    contentScriptFile: contextMenuItemContentScriptFiles,
    context: contextMenu.SelectorContext("img"),
        onMessage: function (posted) { someFunction(posted) }
});

如果你知道的话,你能告诉我目前的方法是什么吗?我花了很多时间在这上面。

谢谢。

4

2 回答 2

2

我不确定是否有更简单的方法,但您可以使用 contentScript 来确定您是否在图像元素/节点上和/或用户是否选择了文本。

var cm = require("context-menu");
cm.Item({
  label: "dfhdfg",
  contentScript: 'self.on("context", function (node) {' +
                 '  if(node.nodeName==="IMG"){'+
                 '      //do something to web page or post a message back to addon  '+
                 '  } '+
                 '  else if(window.getSelection().toString()!===""){'+
                 '      //do something to web page or post a message back to addon  '+
                 '  } '+                 
                 '});'
});
于 2012-07-25T02:14:51.427 回答
0

我去了这个:

self.on("context", function (node, data) {
        return ((node.nodeName == "IMG") || 
                (getSelection().length) );
});

wheregetSelection()是返回当前选择的函数。

谢谢你的帮助。

于 2012-07-25T10:09:07.433 回答