首先对于Internet Explorer的隐藏鼠标右键的方法可以说只要弄过网页的人可能知道要用 documentoncontextmenu=Function(return false;); 不过对于Netscape这个办法就并不能完全行的通通过实践我发觉在Internet Explorer和Netscape这两款浏览器中都存在某些元素鼠标的右键在上边点击是没有反应现在我就利用如此一点来隐藏鼠标右键我们可以知道在Internet Explorer和Netscape这两款浏览器中<div>的滚动条上是弹不出右键菜单的那我们就在右键事件中把我们定制的<div>元素just_hide_it移到鼠标的点击的位置来这样就不可能弹出右键菜单了 源代码如下 <html><head><meta httpequiv=ContentType content=text/html; charset=gb> <! Edited by Renjian Zhou(Joo)Shanghai Jiao Tong UniversityApplication MathematicClass FIf you are interested in editing HTML pagesconnected me by > <title> 通用的藏鼠标右键 </title> </head> <body > <script language=JavaScript> tmp=navigatorappVersiontoString(); IE=parseFloat(tmpsubstring(tmpindexOf(MSIE)+tmplength)); function NC_rightclick(e) { if(ebutton== || (ebutton== && etype==contextmenu)) { documentgetElementById(just_hide_it)styleleft=eclientX; documentgetElementById(just_hide_it)styletop=eclientY; return false; } } if(IE) documentoncontextmenu=Function(return false;); else { documentwrite(<div id=just_hide_it ></div>); documentoncontextmenu=NC_rightclick; documentonmousedown=NC_rightclick; } </script> </body> </html> 解释一下不仅在Netscape中可以用如此<div>方法在Internet Explorer中<div>方法也有效不过既然在Internet Explorer中已经有了更有效的方法我也就不用如此方法了在Netscape中对just_hide_it要求zIndex为与body的zindex相同是出于使just_hide_it透明化使人感觉不出有如此一个元素的存在 再说一句我们隐藏鼠标右键的目的不是藏源代码而是为了一些其他的网页的功能顺便提倡各位大虾有好的代码多点共享毕竟这个世界应该是一个共享的世界 |