如何禁止复制网页内容(兼容ie,ff)
操作方法
- 01
如何复制网页内容呢,并且还要兼容ie6,ie7,ie8,firefox等主流浏览器,今天我就写一个网页禁止复制代码呢。 <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.zhutiai.com/tr/xhtml1/dtd/xhtml1-transitional.dtd">< html xmlns="http://www.111cn.net/1999/xhtml">< head>< meta http-equiv="content-type" content="text/html; charset=gb2312" />< title>如何禁止复制网页内容(兼容ie,ff)</title>< script> http://t.qq.com/caipiao99c http://t.qq.com/caipiao101 http://t.qq.com/zaixian101 http://t.qq.com/quyingpt //网页特效document <!--for ie and maxthon-->//document.oncontextmenu=new function("event.returnvalue=false");document.onselectstart=new function("event.returnvalue=false"); < !--for firefox-->document.oncontextmenu=function(e){return false;} <!--禁止复制for firefox--> </script>< style> body { -moz-user-select:none; } < /style> </head> <body>< /body>< /html>