禁止右键保存图片代码:

<img src="https://www.codesou.cn/templets/default/images/v2/logo.png" oncontextmenu="return false;">

禁止右键保存图片效果:

附:jQuery 禁止右键保存图片代码:

var img=$("img");
img.on("contextmenu",function(){return false;});