当前位置:编程学习 > C#/ASP.NET >>

求C# VB JS 在IE中去掉打印功能

同上,最好是JS的。不是快捷方式那种。 --------------------编程问答-------------------- 屏蔽右键 
<script   language= "JavaScript "> 
<!-- 

if   (window.Event)   
    document.captureEvents(Event.MOUSEUP);   

function   nocontextmenu()   

event.cancelBubble   =   true 
event.returnValue   =   false; 

return   false; 


function   norightclick(e)   

if   (window.Event)   

    if   (e.which   ==   2   ||   e.which   ==   3) 
      return   false; 

else 
    if   (event.button   ==   2   ||   event.button   ==   3) 
    { 
      event.cancelBubble   =   true 
      event.returnValue   =   false; 
      return   false; 
    } 



document.oncontextmenu   =   nocontextmenu;     //   for   IE5+ 
document.onmousedown   =   norightclick;     //   for   all   others 
//--> 
</script> 


参考
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,