Rico: formular

Beitrag lesen

sorry, war ein fehler von mir, dein Code für die Radio-Button ist soweit richtig. Allerdings rufst du das javasript schon auf, bevor die seite überhaupt geladen ist, sodas die elemente noch nicht existieren. Pack das script in eine funktion und ruf sie z.B. bei onload() auf.

example f. aufruf bei einem link:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Neue Seite 2</title>
<script language="JavaScript" type="text/javascript">
 function hallo(){
   if (document.form.aufab[0].checked==true) alert(document.form.aufab[0].value);
   if (document.form.aufab[1].checked==true) alert(document.form.aufab[1].value);
 }
</script>
</head>

<body>
<form name='form'>
<input type='radio' name='aufab' value='auf' checked>aufsteigend  
<input type='radio' name='aufab' value='ab'>absteigend
</form>
<a href="javascript:hallo()">test</a>
</body>

</html>