紫影基地

 找回密码
 立即注册
查看: 259|回复: 0

js禁止鼠标右键

[复制链接]
阅读字号:

2006

主题

2121

帖子

21万

积分

超级版主

Rank: 8Rank: 8

积分
211131
发表于 2023-5-27 05:31:28 | 显示全部楼层 |阅读模式
<script>
    document.oncontextmenu = function (event) {

    if (window.event) {

        event = window.event;

    }

    try {

        var the = event.srcElement;

        if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")) {

            return false;

        }

        return true;

    } catch (e) {

        return false;

    }

}
</script>
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|紫影基地

GMT+8, 2025-1-27 10:40 , Processed in 0.116808 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表