本文最后更新于 over 2 years ago,文中所描述的信息可能已发生改变。
找到 html 文件的</head>
标签,在</head>
前面加如下代码就行了!
一行代码禁止页面复制、右键
html
//禁止用户复制
<style type="text/css">
body {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>
// 禁止用户右键
<script langauge="javascript">
document.oncontextmenu = function (e) {
return false;
};
</script>