# 如何用JS屏蔽鼠标右键

*Published:* 2023-11-15
*Author:* 客服001

#### 温馨提醒

如果文章内容或图片资源失效，请留言反馈，我们会及时处理，谢谢

本文最后更新于2023年11月15日，已超过 180天没有更新



```
<script>
    document.oncontextmenu=new Function("event.returnValue=false"); //禁止右键功能
    document.onselectstart=new Function("event.returnValue=false"); //禁止选择文字
</script>
```