能够用 * ,也可做用于一个divcss
div{ -webkit-touch-callout:none; /*系统默认菜单被禁用*/ -webkit-user-select:none; /*webkit浏览器*/ -khtml-user-select:none; /*早期浏览器*/ -moz-user-select:none; /*火狐*/ -ms-user-select:none; /*IE10*/ user-select:none; }
这种方法会致使input输入框不可用,能够添加这一句解决这个问题:html
input{ -webkit-user-select: auto; }