如何更改 Firefox 上下文菜单中项目的行为

发布于 2024-08-25 07:38:21 字数 245 浏览 9 评论 0原文

我正在尝试更改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一腔孤↑勇 2024-09-01 07:38:28

最好的方法是在包含要禁用的选项的弹出窗口上添加“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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文