```javascript // 禁止右键 document.oncontextmenu = function () { return false; }; // 禁止Ctrl+C document.onkeydown = function () { if ((window.event && window.event.keyCode == 123) || ((e

- 阅读全文 -