我需要Ionic 4应用程序才能在iOS上处理长按文本选择/复制/粘贴。
我在global.scss中尝试了以下操作,但没有成功:
* {
-webkit-user-select: text !important;
-moz-user-select: text !important;
-ms-user-select: text !important;
user-select: text !important;
}
并且还创建了一个可以包含在每个元素中的类:
.selectable {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
然后
<div class='selectable'>This should be selectable</div>
这些都不起作用。
关于我在做什么错的任何建议?
.text-select {
-webkit-user-select: auto;
}
然后在所需的特定元素上使用该类。下面的示例
<ion-text class="text-select">Test</ion-text>