使用js禁止用户选中网页上的内容,IE及Chrome下的方法一样。使用onselectstart,例如
<body onselectstart="return false">
Firefox下,控制css
body { -moz-user-select: none; }
这样在IE,Firefox及Chrome下都可以禁止用户选中页面上的内容了。

相关文章:

  • 2022-02-16
  • 2021-10-16
  • 2021-11-29
  • 2021-09-08
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-03-08
  • 2021-11-29
  • 2021-08-23
  • 2021-06-09
  • 2021-06-09
  • 2021-06-11
相关资源
相似解决方案