划词检索

function showSelection() { let selection = document.getSelection(); console.log(selection); return selection.toString(); } document.ad...

function showSelection() {
    let selection = document.getSelection();
    console.log(selection);
    return selection.toString();
}

document.addEventListener("selectionchange", showSelection)