禁止选中页面内容-兼容ie、firefox、chrome

使用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
原文地址:https://www.cnblogs.com/ITzhangyunpeng/p/9361238.html