如何删除“查看此图片”当我用 jQuery 右键单击图像时链接?
我有一个形象。 当我左键单击它时,图像后面的值应该增加 1。 当我右键单击它时,它应该将图像后面的值减少 2。
问题是,当我右键单击图像时,它会正确地减少值。但是,Mozilla Firefox 会弹出“复制此图像,查看此图像”等窗口。
我该如何防止这种情况发生?
I have an image.
When I left click on it, it should increase the value behind the image by 1.
When I right click on it, it should decrease the value behind the image by 2.
The problem is, when I right click the image, it decreases the value correctly. However, Mozilla Firefox pops a window like "Copy this image, View this image" etc.
How can I prevent this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是上下文菜单,是现代操作系统的标准功能,并非 Firefox 特有的。
要禁用图像的上下文菜单,请使用:
via DevGrow ,修改为使用 jQuery 1.7+ .on() 附加事件处理程序。
That is the context menu, a standard feature of Modern OS' and not specific to Firefox.
To disable the context menu for images, use:
via DevGrow, modified to use the jQuery 1.7+ .on() to attach the event handler.