Code:
<script language="javascript"> function doit(action,req) { if (!document.meinForm) return; if (req != 1) { var selection = 0; if (document.meinForm.id.length) { for (i = 0; i < document.meinForm.id.length; i++) { if (document.meinForm.id[i].checked) selection = 1; } }else{ if (document.meinForm.id.checked) selection = 1; } if (!selection == 1) { alert("Es muss mindestens ein Eintrag ausgewählt sein."); return; } } this.location.href= ('datei_' + action+ '.php?action=edit&id='+ document.meinForm.id.value); } </script> </head> <body> <form name="meinForm" method="get" action=""> <input type="radio" name="id" value="1"><br> <input type="radio" name="id" value="2"><br> <input type="radio" name="id" value="3"><br> <input type="radio" name="id" value="4"><br> <input type="radio" name="id" value="5"><br> <br> <a href="JavaScript:doit('delete')">löschen</a> <a href="JavaScript:doit('rename')">umbenennen</a> <a href="JavaScript:doit('edit')">editieren</a> <a href="JavaScript:doit('copy')">kopieren</a> <a href="JavaScript:doit('move')">verschieben</a> </form>
Ich möcht mit Textlinks auf das Formular zugreifen und was markiert ist die entsprechende ID auf eine URL weiter komme in form in etwa wie es oben ist.
Was dabei nicht hinhaut ist das bei der URL stoppt es und auch liest er nicht die ID aus. Was mache ich dort falsch?
Gruss
Björn
Kommentar