问题描述
手机端苹果手机,长按可以选中文字,但是一些按钮上一般要避免长按时弹出选中文字,或者一些罩层要避免弹出。
问题解决
使用css可以禁止:
.className {user-select: none; -webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;}
兼容性
易犯错误
不要轻易使用通配符:
*{user-select:none;}
因为使用上述样式,在苹果手机上会导致inpu输入框不能聚焦从而不能输入。