javascriptはコピーと貼り付けが禁止されています.
575 ワード
<!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>