在混合应用程序中启用选择和复制[onsen ui]

时间:2016-01-29 11:45:11

标签: android cordova onsen-ui

我正在使用onsen ui开发一个混合应用程序,我想启用我们在chrome应用程序中看到的文本选择和复制功能,长按文本选择它并复制它们,我尝试按照代码但是启用了浏览器中的文字不在应用程序中。

代码

*:not(input):not(textarea):not(select) {
    -webkit-user-select: all;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

1 个答案:

答案 0 :(得分:1)

您应该将所有这些属性设置为“all”,而不仅仅是-webkit-user-select。

*:not(input):not(textarea):not(select) {
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    user-select: all;
}