如题

解决方案 »

  1.   

    <body onmouseup="document.selection.empty()" oncontextmenu="return false" onmousemove="document.selection.empty()" oncopy="document.selection.empty()" onselect="document.selection.empty()">把<body>改成这样就可以了。不光是紧了鼠标右键的操作~~~根据自己的要求增减吧~~~
    看似不像这个区的问题~~~~******************************
    C#代码中心[CCSharp.Net]内测中
    宗旨:做最实用方便的C#专题站
    欢迎参观访问留言~~~
      

  2.   

    写一个js就可以了?网上很多的,baidu找一下就好 了
      

  3.   

    把下面代码放到<body>区域中<script language="javascript">
    function click() {
    if (event.button==2) { 
    alert('测试!')
    }
    }
    document.onmousedown=click
    </script>