如何更改 Firefox 上下文菜单中项目的行为
我正在尝试更改 placesOverlay.xul
中
的行为。我的目标是根据我需要使用 Javascript 弄清楚的条件禁用属性条目。
我是 XBL
绑定和处理程序的新手,不知道如何为现有/浏览器定义的 XUL
元素注册这样的处理程序。或者有更简单的方法吗?
谢谢。
I'm trying to change the behavior of <popup id="placesContext">
in placesOverlay.xul
. My goal is to disable the Properties entry upon conditions that I need to figure out using Javascript.
I am new to XBL
bindings and handlers and don't know how to register such a handler for an existing/browser-defined XUL
element. Or is there a simpler way?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是在包含要禁用的选项的弹出窗口上添加“popupshowing”事件的事件侦听器。它将在弹出窗口显示之前被调用,此时您可以执行您想要执行的任何检查并禁用或启用菜单项。
这里有更多信息:https://developer-stage.mozilla。 org/en/XUL/PopupGuide/ContextMenus#Hiding_and_Showing_Menu_Items_based_on_Context
The best way is to add a event listener for "popupshowing" events on the popup that contains the option you want to disable. It will be called just before the pop up shows and at that point you can do whatever checks you want to do and disable or enable to menuitem.
There is more information here: https://developer-stage.mozilla.org/en/XUL/PopupGuide/ContextMenus#Hiding_and_Showing_Menu_Items_based_on_Context