css3实现文本不可复制:-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;}
原文:http://www.cnblogs.com/YYvam1288/p/7121012.html