Home  >  Article  >  Web Front-end  >  Custom right-click attributes override the browser's default right-click behavior implementation code_Basic knowledge

Custom right-click attributes override the browser's default right-click behavior implementation code_Basic knowledge

WBOY
WBOYOriginal
2016-05-16 17:42:201256browse
Copy code The code is as follows:

function $(id) {
return document.getElementById(id );
}
$('test').oncontextmenu=function() { return false; };

This way you can customize the right-click menu for the specified element
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