Jutta: Variable wird Funktion nicht übergeben?

Beitrag lesen

Hallo,

ich habe ein Problem mit der Funktions-Übergabe kann mir jemand sagen wieso mir meine Variable nicht übergeben wird?

Ich wollte dann mit alert ausprobieren welche Variablen übergeben werden weil gar nichts ankommt!?

Und die Fehlerbehandlung mit alert habe ich 1-zu-1 aus Teamone übernommen, was aber auch nicht funktioniert.

alert(document.getElementById(txt).style); // http://de.selfhtml.org/javascript/objekte/htmlelemente.htm

[...]

function ChangeText(txt,text)
   {

if(aktiveZeile)
    {
    document.getElementById(aktiveZeile).style.backgroundColor='#cccccc';
    }

document.txt.aktiveZeile=txt.id;
   alert(document.getElementById(txt).style);  // http://de.selfhtml.org/javascript/objekte/htmlelemente.htm

alert(text);

ChangeTxt(text);
   document.txt.style.color='black';

}

</script>

<table>
   <tr style="background: #cccccc;"
    onmouseover="this.style.cursor='hand' ; this.style.backgroundColor='green' ; status='over 1'"
    onmouseout="ChangeCol(this)  ; status=''"

onclick="ChangeText(this,'text1');"
    id="tab1">

<td>
   1111
   </td>
   </tr>
   </table>

<table>
   <tr style="background: #cccccc"
    onmouseover="this.style.cursor='hand' ; this.style.backgroundColor='green' ; status='over 2'"
    onmouseout="ChangeCol(this)  ; status=''"

onclick="ChangeText(txt2,'text2');"
    id="tab2">

<td>
   2222
   </td>
   </tr>
   </table>

[...]

Gruß Jutta