【JavaScript】とある右クリック禁止の例
<html> <head> <title>右クリック禁止</title> </head> <body oncontextmenu="return false;"> 右クリックを禁止する例です…… </body> </html>
<html> <head> <title>右クリック禁止</title> </head> <body oncontextmenu="return false;"> 右クリックを禁止する例です…… </body> </html>
コメント