点击时选择span内的文本
P粉147747637
P粉147747637 2024-03-19 21:47:40
0
1
397

我想获取我点击的文本,因此,如果我点击单词“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粉147747637
P粉147747637

全部回复(1)
P粉851401475

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

  
        
    
sssccc
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板