点击时选择span内的文本
P粉147747637
P粉147747637 2024-03-19 21:47:40
[CSS3讨论组]

我想获取我点击的文本,因此,如果我点击单词“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 选项适用于所有浏览器,并且无需使用第三方库。

  
        
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号