How can I get the element in which highlighted text is in?

后端 未结 3 1248
独厮守ぢ
独厮守ぢ 2020-12-03 05:54

I am trying to learn how to write a bookmarklet where I can highlight some text, click on the bookmarklet and have it tell me what got highlighted. I can get that far, but

3条回答
  •  孤街浪徒
    2020-12-03 06:22

    Try something similar to this to get the dom element that contains the selected text.

    window.getSelection().anchorNode.parentNode
    

    It works on firefox and Chrome, you should test it into the remaining browsers.

    It have a quirk, if you select text that beholds to more than an element, only the first one is returned. But maybe you can live with this.

    Just for reference on what is the anchorNode property: http://help.dottoro.com/ljkstboe.php

    On internet explorer this snippet should do the trick (I can't test it)

    document.selection.createRange().parentElement();
    

    as stated into http://msdn.microsoft.com/en-us/library/ms535872.aspx and http://msdn.microsoft.com/en-us/library/ms536654.aspx

    A range explanation on quirksmode: http://www.quirksmode.org/dom/range_intro.html

提交回复
热议问题