且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

js禁止复制,右键,选择,禁止另存为

更新时间:2022-05-01 01:24:51

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>豪情</title>
        <style>
        body{-moz-user-select:none;}
        </style>
    </head>
    <body oncopy="document.selection.empty()" oncut="return false" onselect="document.selection.empty()" ondragstart="return false" onselectstart="return false">
        
        <!-- 禁止复制 -->
        <noscript></noscript>
        <p>this is test content</p>
    </body>
</html>








本文转自豪情博客园博客,原文链接:http://www.cnblogs.com/jikey/archive/2010/05/08/1730344.html,如需转载请自行联系原作者