我如何让Ionic 4应用程序长按选择文本?

问题描述 投票:0回答:1

我需要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>

这些都不起作用。

关于我在做什么错的任何建议?

ios ionic4
1个回答
0
投票
.text-select {
  -webkit-user-select: auto;
}

然后在所需的特定元素上使用该类。下面的示例

<ion-text class="text-select">Test</ion-text>
© www.soinside.com 2019 - 2024. All rights reserved.