前端如何禁止复制粘贴

css使用 user-select禁止复制

<!DOCTYPE html>
<html>
<head>
<style> 
div {
      
      
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
</style>
</head>
<body>

<h1>user-select 属性</h1>

<div>The text of this div element cannot be selected. If you double-click me, my text will not be highlighted.</div>

</body>
</html>

js监听copy事件

document.addEventListener('copy',(e)=>{
    
    
	e.preventDefault()
})

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_44162077/article/details/130326267