document.oncontextmenu = function (e) {
var target = (typeof e != "undefined") ? e.target : event.srcElement
if (target.tagName == "IMG" || (target.tagName == 'A' && target.firstChild.tagName == 'IMG')) {
alert("Downloading of images is disabled at the request of the copyright holders.");
return false;
}
}
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!