xul :仅为超链接创建右键单击上下文菜单项
我有一个关于构建 Firefox 插件的问题要问,基本上我的目标是做以下事情,
1)在我的插件中,我想仅显示链接[锚标记
]并隐藏的右键单击上下文菜单项页面其余部分的菜单项
2) 如何将动态列表添加到我的菜单中,即根据用户的选择动态添加菜单列表项的数量。
有人能给我指出正确的方向吗?
谢谢!
I got a question to ask on building firefox plugin, basically my aim is to do following things,
1) In my plugin I want to show right click context menu item for only links[anchor tags
] and hide the menu item for rest of the page
2) How to add dynamic list to my menu, i.e., adding the number of menu list items dynamically depending upon user's choice.
Can someOne point me to a right direction
Thanks !!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为
contextmenu
事件绑定一个事件监听器,并检查点击的元素是否为链接,eg:详细了解事件属性和
menu
元素属性。查看
menu
元素appendItem
方法。Bind an event listener for the
contextmenu
event and check whether the clicked element is a link, e.g.:Read more about event properties and the
menu
element properties.Have a look at the
menu
element'sappendItem
method.