Welcome to Delicate template
Header
Just another WordPress site
Header

屏蔽右键,复制,兼容火狐和IE

8月 22nd, 2011 | Posted by 无 名 in css | html | js

今天有客户修改网站,要求网站禁止别人复制。在网上找了资料,拿来分享。

代码如下:

<script type="text/javascript">
<!--
document.oncontextmenu=function(e){return false;}
document.onselectstart=function(e){return false;}
// -->
</script>

css内容(这是为了兼容火狐不能选择的):

body{-moz-user-select:none;}

这样就可以了,屏蔽了右键和选择复制。但是如果查看源代码,还是能复制的,不过没那么方便了。

You can follow any responses to this entry through the RSS 2.0 Both comments and pings are currently closed.