Axel: Java Script problem

Beitrag lesen

Hi,
ich hoffe dieses Beispiel hilft dir weiter...

<html><head><title>Test</title>
</head><body>
<form name="Eingabe">
<input type=text name="title">
<input type=button value="OK" onClick="tst()"><p>
<input type="text" name="erg">
</form>
<script language="javascript">
var test = new Array('hallo','depp','sonstwas');
test['hallo'] = 10;
test['depp'] = 5;
test['sonstwas'] = 20;
function tst()
{
  var wert = window.document.forms[0].elements['title'].value;
  window.document.forms[0].elements['erg'].value = test[wert];
}
</script>

</body></html>

Gruß
Axel