admin 管理员组

文章数量: 1184232

打开浏览器控制台,复制粘贴

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

本文标签: 解决办法 浏览器 页面 内容