IE、Firefox 禁止右键、屏蔽右键菜单

<script type="text/javascript"> 
<!-- 
document.oncontextmenu=function(e){return false;} 
//--> 
</script> 
================style区代码================
<style> 
body { 
-moz-user-select:none; 
} 
</style> 
================body区代码================
<body onselectstart="return false"> 
网页内容 
</body>

你可能感兴趣的:(java,IE,firefox)