本文使用「署名 4.0 国际 (CC BY 4.0)」许可协议,欢迎转载、或重新修改使用,但需要注明来源。 [署名 4.0 国际 (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/deed.zh) 本文作者: 苏洋 创建时间: 2009年04月07日 统计字数: 301字 阅读时间: 1分钟阅读 本文链接: https://soulteary.com/2009/04/07/js-disable-mouse-right-button.html ----- # [js]屏蔽鼠标右键 彻底屏蔽鼠标右键 ```js oncontextmenu="window.event.returnValue=false" ``` 表格中禁止使用鼠标右键 ```html
PromiseForever
``` 类似代码: 屏蔽鼠标右键 ```js oncontextmenu="return false" ``` 禁止选取内容 ```js onselectstart="return false" ``` 禁止粘贴内容 ```js onpaste="return false" ``` 禁止复制 禁止剪切 ```js oncopy="return false;" oncut="return false;" ``` 接下来来个全的 ```html