亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

? ? ????? JS ???? JavaScript? ???? ? ????? ???? ??? ???? ??? ?? ? ?????

JavaScript? ???? ? ????? ???? ??? ???? ??? ?? ? ?????

Dec 13, 2024 am 06:36 AM

How Can I Get User-Selected Text from a Website Using JavaScript?

?? ???/??? ??? ????

jQuery? ???? ? ??? ??? ???? ?? ????? ??? ???? ?? ? ?????

??:

?? ???? ??? ???? ?????. jQuery? ???? ?? ?? ??? ???? ??? ? ???? ??? ????.

function getSelectionText() {
    let text = "";

    if (window.getSelection) {
        text = window.getSelection().toString();
    } else if (document.selection && document.selection.type != "Control") {
        text = document.selection.createRange().text;
    }

    return text;
}

??