如何防止响应式网站的屏幕截图?

时间:2019-03-06 12:44:16

标签: javascript php jquery html wordpress

我正在创建一个网站,但遇到了一些问题-
在手机上测试后,我想防止网站中的屏幕截图。
我将jQuery用于桌面视图可以正常工作,但如何防止在移动设备中使用

是否可以防止屏幕截图?

 function copyToClipboard() {
  var aux = document.createElement("input");
  aux.setAttribute("value", "print screen disabled!");      
  document.body.appendChild(aux);
  aux.select();
  document.execCommand("copy");
  // Remove it from the body
  document.body.removeChild(aux);
  alert("Print screen disabled!");
}

1 个答案:

答案 0 :(得分:3)

否,无法阻止手机截图。