ich habe folgende funtion geschrieben:
Funtioniert tadellos.
Jetzt ändere ich die Funtion zu
UND nun macht er GAR NIX mehr.
Sogar die Fehlerbehandlung mit try catch, ergibt GAR NIX. Nicht mal das Ergebnis von e wird ausgegeben. Gar nix. Es ist , als gebe es diese Funktion nicht mehr.
WO könnte das problem liegen?
Selbst das bringt KEINE Ausgabe
Es ist , als würde die funktion einfach abgebrochen.
übrigens: SO rpfe ich die Funktion auf:
PHP:
<script type="text/javascript">
function Set_führerscheinauto(){
alert (document.bewerberformular.führerscheinauto.selectedIndex);
document.bewerberformular.führerscheinauto.selectedIndex=2;
document.bewerberformular.führerscheinsonder.selectedIndex=3;
document.bewerberformular.führerscheinmofa.selectedIndex=2;
alert ("test");
}
</script>
Jetzt ändere ich die Funtion zu
PHP:
<script type="text/javascript">
function Set_führerscheinauto(){
var in;
in=document.bewerberformular.führerscheinauto.selectedIndex;
alert (in);
document.bewerberformular.führerscheinauto.selectedIndex=2;
document.bewerberformular.führerscheinsonder.selectedIndex=3;
document.bewerberformular.führerscheinmofa.selectedIndex=2;
alert ("test");
}
</script>
Sogar die Fehlerbehandlung mit try catch, ergibt GAR NIX. Nicht mal das Ergebnis von e wird ausgegeben. Gar nix. Es ist , als gebe es diese Funktion nicht mehr.
PHP:
<script type="text/javascript">
try{
var in;
in=document.bewerberformular.führerscheinauto.selectedIndex;
alert (in);
document.bewerberformular.führerscheinauto.selectedIndex=2;
document.bewerberformular.führerscheinsonder.selectedIndex=3;
document.bewerberformular.führerscheinmofa.selectedIndex=2;
alert ("test");
}catch (e)
alert (e);
}
}
Selbst das bringt KEINE Ausgabe
PHP:
<script type="text/javascript">
try{
alert (document.bewerberformular.führerscheinauto.selectedIndex);
document.bewerberformular.führerscheinauto.selectedIndex=2;
document.bewerberformular.führerscheinsonder.selectedIndex=3;
document.bewerberformular.führerscheinmofa.selectedIndex=2;
alert ("test");
}catch (e)
alert ("test");
}
übrigens: SO rpfe ich die Funktion auf:
PHP:
JA <input type="radio" name="fromauto" value="1"<?php if(isset($from_auto) && $from_auto == '1') echo ' checked="checked"'; ?> onchange="Set_führerscheinauto();document.bewerberformular.führerscheinauto.focus();" >
NEIN <input type="radio" name="fromauto" value="0"<?php if(isset($from_auto) && $from_auto == '0') echo ' checked="checked"'; ?> onchange="document.bewerberformular.speichern.focus();" >