Home >Web Front-end >JS Tutorial >jquery disable right click example_jquery

jquery disable right click example_jquery

WBOY
WBOYOriginal
2016-05-16 16:51:05958browse

Disable right click

Copy code The code is as follows:

$(function(){
$(document ).bind("contextmenu",function(e){
                                                                 return false;
//js method
function stop(){ return false;

}
document.oncontextmenu=stop;


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn