Bootstrap

Javascript禁止复制网页内容

怎么禁止别人复制网页内容呢?在制作网页过程中,为了保护内容版权信息,我们有时需要禁止网页内容复制操作。对此我们可以采取以下方法来实现。

 

方法一:在编写网页的过程中,我们通过给网页添加以下代码来实现,通过添加以下代码,可以有效防止浏览者按“Ctrl+C”及鼠标右键进行复制操作。

      function click() { alert('版权所有,禁止复制') } 
      function click1() { if (event.button == 2) { alert('版权所有,禁止复制') } } 
      function ctrlkeydown() { if (event.ctrlkey) { alert('版权所有,禁止复制') } } 
      document.onkeydown = ctrlkeydown; 
      document.onselectstart = click; 
      document.onmousedown = click1;

 

我们还可以“隐藏”性的禁止复制网页内容操作,可以使用以下代码来实现:

 

<body onmousemove=HideMenu() oncontextmenu="return false" ondragstart="return false" onselectstart="return false"
  onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()">


  禁止复制的页面内容

</body>

 

;