获取突出显示/选定的文本

时间:2011-03-21 14:33:59

标签: javascript jquery textselection

是否可以在网站的段落中获取突出显示的文字,例如使用jQuery?

6 个答案:

答案 0 :(得分:430)

获取用户选择的文本相对简单。通过涉及jQuery没有任何好处,因为除了windowdocument对象之外什么都不需要。

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

如果您对同时处理<textarea>和texty <input>元素中的选择的实现感兴趣,可以使用以下内容。由于它现在是2016年,我省略了IE&lt; = 8支持所需的代码,但是我已经在很多地方发布了这些内容。

function getSelectionText() {
    var text = "";
    var activeEl = document.activeElement;
    var activeElTagName = activeEl ? activeEl.tagName.toLowerCase() : null;
    if (
      (activeElTagName == "textarea") || (activeElTagName == "input" &&
      /^(?:text|search|password|tel|url)$/i.test(activeEl.type)) &&
      (typeof activeEl.selectionStart == "number")
    ) {
        text = activeEl.value.slice(activeEl.selectionStart, activeEl.selectionEnd);
    } else if (window.getSelection) {
        text = window.getSelection().toString();
    }
    return text;
}

document.onmouseup = document.onkeyup = document.onselectionchange = function() {
  document.getElementById("sel").value = getSelectionText();
};
Selection:
<br>
<textarea id="sel" rows="3" cols="50"></textarea>
<p>Please select some text.</p>
<input value="Some text in a text input">
<br>
<input type="search" value="Some text in a search input">
<br>
<input type="tel" value="4872349749823">
<br>
<textarea>Some text in a textarea</textarea>

答案 1 :(得分:98)

以这种方式获取突出显示的文字:

window.getSelection().toString()

当然还有特殊待遇:

document.selection.createRange().htmlText

答案 2 :(得分:10)

如果您正在使用chrome(无法验证其他浏览器)以及文本是否位于相同的DOM元素中,则此解决方案有效:

window.getSelection().anchorNode.textContent.substring(
  window.getSelection().extentOffset, 
  window.getSelection().anchorOffset)

答案 3 :(得分:4)

使用window.getSelection().toString()

您可以在developer.mozilla.org

上阅读更多内容

答案 4 :(得分:1)

是的,您可以使用简单的HMTL代码段来做到这一点:

document.addEventListener('mouseup', event => {  
    if(window.getSelection().toString().length){
       let exactText = window.getSelection().toString();        
    }
}

答案 5 :(得分:0)

如果需要,您可以使用事件

    document.addEventListener('selectionchange', (e)=>{
        console.log("Archor node - ",window.getSelection().anchorNode);
        console.log("Focus Node - ",window.getSelection().toString());
    });