使android'select all'选项仅用于选择ionic中的自定义内容

时间:2018-09-03 14:48:24

标签: android ionic-framework ionic3 ionic-native textselection

有人遇到过这种情况,您想让android的“全选”选项来选择自定义内容吗?现在,“全选”将选择整个页面。我只希望它选择页面的一部分。 任何帮助将是可观的。 请检查下面的屏幕截图

enter image description here

1 个答案:

答案 0 :(得分:0)

将此类添加到您不希望选择的位置

.noselection {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}