搜索

首页  >  问答  >  正文

点击时选择span内的文本

我想获取我点击的文本,因此,如果我点击单词“mother”,日志只会显示这个单词“mother”,即使它位于包含另一个单词的跨度内,

我使用了这段代码,但它甚至没有选择跨度:

function getSelectedText(e) {

    if(window.getSelection)
        return console.log(window.getSelection().toString());
    else if(document.getSelection)
        return console.log(document.getSelection());
    else if(document.selection)
        return console.log(document.selection.createRange().text);
    return console.log("");
    
}

document.body.onmouseup = getSelectedText;
<div class="destination">
  <span class="word">sister mother</span>
  <span class="word" >brother</span>
  <span class="word" >father</span>
</div>

<h1>hi</h1>

P粉147747637P粉147747637243 天前399

全部回复(1)我来回复

  • P粉851401475

    P粉8514014752024-03-20 11:22:07

    span-split 选项适用于所有浏览器,并且无需使用第三方库。

      
            
        
    sssccc

    回复
    0
  • 取消回复