Problem mit Replace

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Problem mit Replace

    Hallo zusammen

    Habe eine Function geschribene, aber die will irgendwie nicht das, wass ich will

    PHP-Code:
    <script type="text/javascript">
                function 
    ReplaceHTMLTags(){
                
                    try {
                    
                        var 
    strTextValue document.forms[0].txtText.value;
                        var 
    strTmp;
                        
                        
    alert("Vor: " strTextValue.length);    
                        
                        
    strTmp strTextValue.replace(/</g,"&lt;");
                        
    alert("strTmp: " strTmp);

                        
    strTextValue strTmp.replace(/>/g,"&gt;");
                        
    alert("strTextValue: " strTextValue);
                        
                        
    document.forms[0].txtText.Value "Heiniger";                
                    
                    }catch(
    e){
                        
    //Nothing to do!
                        
    alert("Fehler: " e);
                    }
                }      
            </
    script
    das erste alert funktioniert einwand frei, aber dan bei der Zeile
    strTmp = strTextValue springt er immer in den catch blox [Object Fehler].

    Was mache ich falsch?

    Danke für die Hilfe

  • #2
    Hat sich erledigt.

    Danke

    Kommentar

    Lädt...
    X