window.getSelection()相关

Posted 水上由岐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.getSelection()相关相关的知识,希望对你有一定的参考价值。

昨天晚上折腾了几个小时加今天的半天,终于搞定了这个问题
不得不感慨,就算看起来再微小的需求,实现起来还真得花一番功夫
只做了一点微小的工作,很是惭愧

现在的解决方案,div输入的字符串的每一位都映射到一个数组
元素有两种状态,0表示正常显示,1表示需要被加粗,由此可以推出多种状态,如果某段字符串被选中,它在数组内的对应元素就会被设置成相对的状态码
再根据这个数组来渲染innerhtml
为此需要获得选中字符串精确的位置
然而Window.getSelection()获得的偏移量是相对于上个元素
例如innerHTML

ab<strong>cdef</strong>gh

如果我们选中gh,获得的偏移量是0和2
在设置元素的时候就会跑到ab上

仔细看了每一个属性之后,有如下方法

        var range = window.getSelection().getRangeAt(0);
        var offset = 0;
        var str = '';
        var container = range.startContainer;
        while(container.previousSibling)
            console.log(container.previousSibling.textContent.trim());
            console.log(container.previousSibling.textContent.trim().length);
            str += container.previousSibling.textContent.trim();
            offset += container.previousSibling.textContent.trim().length;
            container = container.previousSibling;
        

最后得出的offset就是相对整个字符串的偏移量

这样接下来的工作就简单了

renderBoldv3:function()
        var selection = CVChat.post.getSelectedText();
        var range = CVChat.post.getSelectedText().getRangeAt(0);
        if(range.endContainer.parentNode != range.startContainer.parentNode)
            return;

        var begin = range.startOffset;
        var end = range.endOffset;
        if(begin>end)
            var tmp = begin;
            begin = end;
            end = tmp;
        

        var offset = 0;
        var str = '';
        var container = range.startContainer;
        while(container.previousSibling)
            console.log(container.previousSibling.textContent.trim());
            console.log(container.previousSibling.textContent.trim().length);
            str += container.previousSibling.textContent.trim();
            offset += container.previousSibling.textContent.trim().length;
            container = container.previousSibling;
        


        var str = $(".cvchat-post-text:not(.out-of-view)").text().trim();
        //console.log(str.length);

        for(i = 0;i<str.length;i++)
            if(CVChat.post.msgFlag[i] == undefined)
                CVChat.post.msgFlag[i] = 0;
        

        console.log('offset: '+offset+' begin: '+begin +' end: '+end);
        for(var i = offset+begin;i<offset+end;i++)
            CVChat.post.msgFlag[i] = 1;
        

        var finalStr = '';

        if(CVChat.post.msgFlag[0] == 1)
            finalStr+='<strong>';
        
        for(i=0;i<str.length-1;i++)
            finalStr+=str[i];
            if(CVChat.post.msgFlag[i] == 0 && CVChat.post.msgFlag[i+1] ==1 )
                finalStr+='<strong>';
            
            if(CVChat.post.msgFlag[i]==1 && CVChat.post.msgFlag[i+1] ==0 )
                finalStr+='</strong>';
            
        

        finalStr+=str[i];
        if(CVChat.post.msgFlag[i] == 1)
            finalStr+='</strong>';
        

        console.log(CVChat.post.msgFlag);
        console.log(finalStr);

        $(".cvchat-post-text:not(.out-of-view)").html(finalStr);

    

以上是关于window.getSelection()相关的主要内容,如果未能解决你的问题,请参考以下文章

window.getSelection和document.selection getSelection

酶玩笑 window.getSelection() 不起作用

Window.getSelection

window.getSelection 返回 html [重复]

textarea的window.getSelection()在Firefox中不起作用?

webview- window.getselection()值为null