我正在使用onsen ui开发一个混合应用程序,我想启用我们在chrome应用程序中看到的文本选择和复制功能,长按文本选择它并复制它们,我尝试按照代码但是启用了浏览器中的文字不在应用程序中。
代码
*:not(input):not(textarea):not(select) {
-webkit-user-select: all;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
答案 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;
}