我需要一种方法来防止从Angular组件复制任何文本。 我已经看到了用于输入的指令,但是它不能用于其他任何东西。
我目前正在使用以下CSS禁用文本突出显示:
.no-highlight{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
最好的方法是什么?