F12审查元素小技巧

1.解除网页不可复制

代码:

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

点赞

发表评论