【方法一:CSS3实现文本不可复制】

.content {
-moz-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
-o-user-select:none;
}
/*然而不兼容IE678*/

【方法二:JS实现文本不可复制】

document.getElementById('').onselectstart = document.getElementById('').oncontextmenu = function(){return false;}
// 兼容所有浏览器
05-16 10:02