如何删除“查看此图片”当我用 jQuery 右键单击​​图像时链接?

发布于 2024-12-24 17:41:10 字数 155 浏览 1 评论 0原文

我有一个形象。 当我左键单击它时,图像后面的值应该增加 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 技术交流群。

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

发布评论

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

评论(1

黎歌 2024-12-31 17:41:10

这是上下文菜单,是现代操作系统的标准功能,并非 Firefox 特有的。

要禁用图像的上下文菜单,请使用:

$(document).on('contextmenu', 'img', function() { return false; });

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:

$(document).on('contextmenu', 'img', function() { return false; });

via DevGrow, modified to use the jQuery 1.7+ .on() to attach the event handler.

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