网页上如何屏蔽鼠标右键菜单

付费节点推荐

免费节点

节点使用教程

Clash 小火箭 v2ray节点购买

好用的梯子,海外网络,快速稳定

Google

最近帮朋友修改他们的培训网站,需要屏蔽鼠标右键,还需要兼容IE,FF等浏览器,找了些方法,都只能支持IE的,但是火狐浏览器和谷歌都不行,今天请教了下高手,茅塞顿开啊,分享下代码吧:

<script type="text/javascript">

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>

希望能帮到大家,转载的话请注明出处~~

该文章由WP-AutoPost插件自动采集发布

原文地址:http://www.jiangweishan.com/article/stop-right-key.html

评论(0)
游客的头像
表情
全部评论
最新