划词检索
2023年3月8日 08:05
function showSelection() {
let selection = document.getSelection();
console.log(selection);
return selection.toString();
}
document.addEventListener("selectionchange", showSelection)function showSelection() {
let selection = document.getSelection();
console.log(selection);
return selection.toString();
}
document.addEventListener("selectionchange", showSelection)