让用户不能复制,选择

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

 这段CSS千万不能放在*{}里面,不然会出现Input不能输入

原文地址:https://www.cnblogs.com/binmengxue/p/5526787.html