我正在尝试禁用当我们长按iOS html应用程序中的任何元素时出现的放大镜。我想从我的整个应用程序中禁用这个放大镜。
我尝试了以下内容:
body, body * {
-webkit-user-select: none !important;
user-select: none !important;
-webkit-user-callout: none !important;
-webkit-touch-callout: none !important;
}
input, textarea {
-webkit-user-select: text !important;
user-select: text !important;
-webkit-user-callout: default !important;
-webkit-touch-callout: default !important;
}
但它不起作用。任何帮助都将受到高度赞赏