禁止别人复制网站文章图片通常有哪些做法
辛辛苦苦写的网站内容被别人复制心里不是滋味,通过代码是可以屏蔽一些新手的,当然了老手无论怎么禁止也没用的。常见于禁止右键,禁止选中,禁止复制等,一般都是通过JS代码实现,代码如下:
<script type="text/javascript">
//禁止鼠标右键
document.oncontextmenu = function(){
return false;
}
//禁止元素被选中
if (typeof(document.onselectstart) != 'undefined') {
// IE chrome下禁止元素被选中
document.onselectstart = function(){
return false;
}
} else {
// firefox下禁止元素被选中的变通办法
document.write('<style type="text/css">body { -moz-user-select: none; }</style>');
}
</script>
把代码放到网站模板里或者公共的头部底部模板即可。