使用js禁止用户选中网页上的内容,IE及Chrome下的方法一样。使用onselectstart,

比如:

在body中加入<body onselectstart="return false">
Firefox下,控制css
body { -moz-user-select: none; }
这样在IE,Firefox及Chrome下都可以禁止用户选中页面上的内容了。
 
 
转载自:http://www.cnblogs.com/top5/archive/2012/04/15/2450743.html

相关文章:

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