<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<h3>禁止复制与粘贴</h3>
<input type="text" name="copyPaste" id="copyPaste" value="求复制"/>
<script>
var copyPaste=document.getElementById("copyPaste");
copyPaste.oncopy=function(){
return false;
}
copyPaste.onpaste=function(){
return false;
}
</script>
</body>
</html>
javascript禁止复制与粘贴
最新推荐文章于 2024-09-03 08:43:46 发布