禁止复制拖动 - pingdongyi/blog-2 GitHub Wiki
通过禁止页面上的一些事件来禁止复制、拖动、右键、全选等操作
<body>
onkeypress="window.event.returnValue=false"
onkeydown="window.event.returnValue=false"
onkeyup="window.event.returnValue=false"
ondragstart="window.event.returnValue=false"
onselectstart="event.returnValue=false"
oncontextmenu="window.event.returnValue=false"
</body>