取消選中阻止複製並且禁止鍵盤F12鍵右鍵操作
- <script>
- //取消選中並且取消右鍵操作
- document.body.onselectstart =
- document.body.oncontextmenu =
- function () {
- return false; //取消瀏覽器默認操作
- };
- </script>
- <script>
- document.body.oncopy = function () { return false; } //阻止複製
- // onkeydown
- // 禁止鍵盤F12鍵
- document.onkeydown = function (e) {
- if (e.keyCode == 123) {
- return false
- }
- }
- // 禁用右鍵菜單
- document.oncontextmenu = function () {
- return false
- }
- // addEventListener
- // 禁用右鍵菜單
- document.addEventListener('contextmenu',function(e){
- e.preventDefault(); // 阻止默認事件
- });
- // 禁止鍵盤F12鍵
- document.addEventListener('keydown',function(e){
- if(e.key == 'F12'){
- e.preventDefault(); // 如果按下鍵F12,阻止事件
- }
- });
- </script>
複製代碼
|