博客园CSS页面禁止选中与复制
/* 禁止页面选中、复制 */
html,body{
moz-user-select: -moz-none;
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
}
/* 禁止页面选中、复制 /
html,body{
-webkit-user-select: none; /webkit浏览器/
-moz-user-select: none; /火狐/
-ms-user-select: none; /IE10/
-khtml-user-select: none; /早期浏览器*/
-webkit-touch-callout: none;
user-select: none;
}
Talk is cheap. Show me the code