Jump to content
Fórum Script Brasil
  • 0

Editor Texto


PowerBuilder

Question

Boa Tarde!
Sou programador Java e estou tentando fazer um editor de texto em javascript mas não estou conseguindo. Por exemplo: Tenho um textArea e preciso selecionar um texto e "grifar" este o texto selecionado. estou tentando fazer desta forma: esta função está funcionando normalmente ele grifa todas as palavras que eu seleciono, o problema é o seguinte quando eu tento tirar o "grifo" como eu faço isto, fazer com que a palavra volte ao normal sem está grifada.
function removerTextoSelecionado(){
obj = 'segmento';
    set_text_default = true;
    if(obj.constructor == String){
        obj = document.getElementById(obj);
    }
    var set_text = (set_text_default) ? function(text){obj.value += text;} : function(){return false;};
    var selection = {text: "", setText: set_text};
    if(document.selection){
        var range = document.selection?document.selection.createRange(): window.getSelection();
        if(range.text){
            selection.text = range.text;
            selection.setText = function(){
                var regex = /]*>(.*)]>/;
                var text = "";
                if(regex.test(range.text)){
                    text = range.text.replace(/^(]*>)(.*)(]>)$/, "$2");
                }else{
                    text = "<font style='color:red; text-decoration: line-through; '>"+range.text+"</font>";
                }
                textoFinal =  $('#segmento').html();
                $('#segmento').html(textoFinal.replace(range.text, text));
            }
        }
    }
}

Edited by PowerBuilder
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...