我正在使用以下代码使用javascript复制文本并将其粘贴到剪贴板。它基本上选择HTML元素,并在该特定元素上显示突出显示。是否可以删除荧光笔或其他任何方式来处理这种情况?

 copyInputMessage(inputElement){
    inputElement.select();
    document.execCommand('copy');
    inputElement.setSelectionRange(0, 0);
  }

最佳答案

尝试这个

copyInputMessage(inputElement){
    inputElement.select();
    document.execCommand('copy');
    inputElement.setSelectionRange(0, 0);
    inputElement.blur();
}

关于javascript - 当我们使用javascript复制到剪贴板时,如何删除突出显示的文本选择,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53425786/

10-12 18:58