Hallo zusammen
Habe eine Function geschribene, aber die will irgendwie nicht das, wass ich will
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
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,"<");
alert("strTmp: " + strTmp);
strTextValue = strTmp.replace(/>/g,">");
alert("strTextValue: " + strTextValue);
document.forms[0].txtText.Value = "Heiniger";
}catch(e){
//Nothing to do!
alert("Fehler: " + e);
}
}
</script>
strTmp = strTextValue springt er immer in den catch blox [Object Fehler].
Was mache ich falsch?
Danke für die Hilfe
Kommentar