javascript禁止复制网页内容能够经过如下方式实现:禁止鼠标右键+禁止选中文本。 代码很简单,只须要在head标签的javascript内加入如下两行代码便可。javascript

document.oncontextmenu=function(e){return false;}
document.onselectstart=function(e){return false;} 

使用了jQuery的页面中能够这么写:css

document.oncontextmenu=function(e){return false;}
$('body').bind("selectstart",function(){return false;});

注意:上面的代码在IE和Chrome下测试经过,可是在Firefox下鼠标右键不能用但依然能够选中文本,因此出于兼容性考虑, 须要在body的style中加入这么一个属性:java

-moz-user-select:none;