HTML实现页面禁止复制或者禁止使用右键

本文介绍了两种防止网页文字被复制的方法。第一种通过HTML属性禁止选中和复制,第二种利用JavaScript监听右键菜单和键盘事件来阻止复制操作。这两种方法可以有效防止网页内容被用户轻易复制。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一共两种方法
第一种是直接在Body里面实现,鼠标是无法选中文字的

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>网页文字不能复制</title>
</head>
<body oncontextmenu="return false" onselectstart="return false" oncopy="return false">
<ul>
<p>他找若是同淋雪, 此生也算共白头</p>
<p>I really want to be with you all my life</p>
</ul>
</body>
</html>

第二种使用JS实现,这种的实现方法,鼠标是可以选中文字 但是不能进行复制
在这里插入图片描述

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>网页文字不能复制</title>
<script>
document.oncontextmenu = function(){
  return false;
}
document.onkeydown = function(){
  if (event.ctrlKey && window.event.keyCode==67){
    return false;
  }
}
document.body.oncopy = function (){
  return false;
}
document.onselectstart = function(){
  //return false;
}
</script>
</head>
<body>
<ul>
  <p>他找若是同淋雪, 此生也算共白头</p>
  <p>I really want to be with you all my life</p>
</ul>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Vergil_Zsh

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值