Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开发了一个 mgwt,gwt-phonegap 应用程序并将其安装在 ios 设备中。我想禁用剪切、复制和粘贴选项到我的文本字段。
有没有机会通过css做到这一点?如果没有,请为我提供解决方案来实现它。
这将禁用除输入之外的所有内容的复制/粘贴:
*{ -webkit-touch-callout: none; -webkit-user-select:none; } input { -webkit-touch-callout: auto !important; -webkit-user-select: auto !important; }
您只能使用它来定位您的文本字段。