Ich habe es jetzt ganz abenteuerlich mit einer if-Abfrage in der Schleife hinbekommen! Herzlichen Dank für Eure Hilfe. Mentale Unterstützung beflüglt...
for (y=0;y<=z;y++) {
/*alert("in 71 z = "+z);
alert(datum +" = datum");
alert(planen[y][3] + " = planen-Eintrag");*/
if(datum != planen[y][3]) {
wechsel=true;
alert(datum +" != " +planen[y][3]);
//break;
}
if(datum == planen[y][3]){
wechsel = false;
alert(datum+" == " +planen[y][3]);
alert(planen[y]);
delete planen[y];
planen[y] =new Array(id,persnr,abwmerkmal,datum);
alert("neues Array = " +planen[y]);
break;
}
//return wechsel;
}
Elsa