当前位置: 代码迷 >> Web前端 >> 解决网页内容不允许复制的步骤
  详细解决方案

解决网页内容不允许复制的步骤

热度:122   发布时间:2012-11-09 10:18:47.0
解决网页内容不允许复制的方法

将该段javascript代码复制,粘到地址栏,按回车,内容即可复制~

?

javascript:document.oncontextmenu='return true';document.onselectstart='return true';document.body.onselectstart='return true';document.body.onselect='return true';document.body.oncopy='return true';document.body.onbeforecopy='return true';document.body.oncontextmenu='return true';document.body.onmouseup='return true';void 0;

?

  相关解决方案