如何删除使用 javascript 复制到剪贴板时突出显示的文本选择
How to remove text selection that is highlighted when we copy to clipboard using javascript
我正在使用以下代码使用 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 将文本复制并粘贴到剪贴板。它基本上选择 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();
}