当前位置:K88软件开发文章中心编程语言JavaScriptJS01 → 文章内容

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

减小字体 增大字体 作者:佚名  来源:网上搜集  发布时间:2019-1-4 8:49:18

-->

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


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