禁用javascript或Console控制台代码 (1)F12键——设置——勾选禁用javascript (2)Console控制台敲如下代码: var allowPaste = function(e){ e.stopImmediatePropagation(); return true; }; document.addEventListener(‘copy’,allowPaste,true); document.addEventListener(‘paste’,allowPaste,true);