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;}
时间: 2024-11-01 12:18:00