検索

ホームページ  >  に質問  >  本文

クリックするとスパン内のテキストを選択します

クリックしたテキストを取得したいので、「mother」という単語をクリックすると、たとえ別の単語が含まれるスパン内であっても、ログには「mother」という単語のみが表示されます。

このコードを使用しましたが、スパンも選択されません:

関数 getSelectedText(e) {

    if(window.getSelection)
        console.log(window.getSelection().toString()) を返します。
    else if(document.getSelection)
        console.log(document.getSelection()) を返します。
    else if(document.selection)
        return console.log(document.selection.createRange().text);
    console.log("") を返します。
    
}

document.body.onmouseup = getSelectedText;
<div class="目的地">
  <span class="word">妹の母親</span>
  <span class="word" >兄弟</span>
  <span class="word" >父親</span>
</div>

<h1>こんにちは</h1>

P粉147747637P粉147747637243日前402

全員に返信(1)返信します

  • P粉851401475

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

    span-split オプションはすべてのブラウザで機能し、サードパーティのライブラリを使用する必要はありません。

     
            
        

    返事
    0
  • キャンセル返事