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

使用js禁止用户选中网页上的内容,IE及Chrome下的方法一样。使用onselectstart,例如
<body onselectstart="return false">
Firefox下,控制css
body { -moz-user-select: none; }
这样在IE,Firefox及Chrome下都可以禁止用户选中页面上的内容了。
原文地址:https://www.cnblogs.com/top5/p/2450743.html