如题

解决方案 »

  1.   


     
    RUN_
     
    (奔跑) 等 级: 
     #1楼 得分:0回复于:2009-11-02 15:10:05重写事件吧。 
     
     
    能具体点吗?谢谢!
      

  2.   

    <script language="javascript">
    <!-- 
    document.onkeydown = function()
     {
              if(event.keyCode==116) {
              event.keyCode=0;
              event.returnValue = false;
              }
    }
    document.oncontextmenu = function() {event.returnValue = false;}
    -->
    </script>
    '起点网站'具体指那个网站?
      

  3.   

    http://www.qidian.com/BookReader/1346431,24738051.aspx#
      

  4.   

    <script language="javascript"> 
    <!-- 
    document.onkeydown = function() 

              if(event.keyCode==116) { 
              event.keyCode=0; 
              event.returnValue = false; 
              } 

    document.oncontextmenu = function() {event.returnValue = false;} 
    --> 
    </script> 这段代码不行,只要把ie的安全级别设置为高,脚本根本就不生效了
      

  5.   

    <body oncopy="return false">
      

  6.   

    起点用的全是动态页,他是用ASP.NET+JS实现的屏蔽,不完全是JS。
      

  7.   

    <body oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onselect='document.selection.empty()' oncopy='document.selection.empty()' onbeforecopy='return false' onmouseup='document.selection.empty()'>