禁止右键、ctrl

<!-- 禁止右键、ctrl -->
<script type="text/javascript">
            function CtrlKeyDown(){
                if (event.ctrlKey) {return false; }
            }
            
            function stop(){ 
                return false; 
            } 
            
            document.oncontextmenu=stop; 
            document.onkeydown=CtrlKeyDown;
</script>

 直接加入所需页即可。

你可能感兴趣的:(tr)