Google浏览器的Console不能粘贴代码的处理

往Console敲入下面的代码,完美修复:

var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('copy', allowPaste, true);
document.addEventListener('paste', allowPaste, true);

posted @ 2023-12-14 17:56  溜溜球_小钢wan  阅读(1349)  评论(0编辑  收藏  举报