EM-Autotechnik
Erfahrenes Mitglied
Hi Leute!
Wie übergibt man den Index eines inputfields an eine Funktion?
this.name.selectedIndex => funktioniert nicht... => 'undefinied'
Danke für Eure Hilfe!
MfG Sebastian
Wie übergibt man den Index eines inputfields an eine Funktion?
PHP:
<script language="JavaScript">
<!-- //
function check(index)
{
alert(index);
}
//-->
</script>
<input type="text" name="name[]" value="wert" onKeyup="check(this.name.selectedIndex);" />
this.name.selectedIndex => funktioniert nicht... => 'undefinied'
Danke für Eure Hilfe!
MfG Sebastian