我正在使用widgetLayoutService并拥有许多html页面。不知何故,仅在chrome中的html页面中禁用了文本选择。我想为几个html页面启用它。我尝试使用以下css样式并应用于所需页面主div但仍无法使用鼠标选择和复制任何文本。这是我的css:
.force-select {
-webkit-user-select:text !important;
-webkit-touch-callout:default !important;
-webkit-user-select:text !important;
-moz-user-select:text !important;
-ms-user-select:text !important;
user-select:text !important;
}
有人可以告诉我是否有其他替代方法可以在Chrome中从鼠标中复制启用文本。