我开发了一个mgwt,gwt-phonegap应用程序,我将其安装在ios设备中。我想禁用剪切,复制和粘贴选项到我的文本字段。
有没有机会通过CSS进行?如果没有,请为我提供解决方案。
答案 0 :(得分:0)
这将禁用除输入以外的所有内容的复制/粘贴:
*{
-webkit-touch-callout: none;
-webkit-user-select:none;
}
input {
-webkit-touch-callout: auto !important;
-webkit-user-select: auto !important;
}
您可以使用它来定位文本字段。