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

付费节点推荐


免费节点


节点使用教程


最近帮朋友修改他们的培训网站,需要屏蔽鼠标右键,还需要兼容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

未经允许不得转载:Bcoder资源网 » 网页上如何屏蔽鼠标右键菜单

相关推荐

更多优质资源关注微信公众号: bcoder

bcoder
赞 (0)
分享到:更多 ()

评论 0

评论前必须登录!

登陆 注册