简体   繁体   中英

How can I remove “View this image” link when I right click on a image with jQuery?

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?

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM