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

IE及Chrome下的方法一样。使用onselectstart,例如

<bodyonselectstart="returnfalse">

Firefox下,控制css

body{-moz-user-select:none;}

这样在IE,Firefox及Chrome下都可以禁止用户选中页面上的内容了。

相关推荐