<script language="JavaScript">
function dothis(thisaction)
{
alert(thisaction);
/* <form> Feld heißt 'public', daran hat sich */
/* Netscape 4.7 gestört und gesamte Funktion nicht aufgerufen !? */
document.ffp.public.value = thisaction;
document.ffp.submit();
}
</script>
</head>
<body ><form name="ffp" action="http://www.web.de" method="post">
<INPUT TYPE="HIDDEN" NAME="public" VALUE=""><a href="javascript:dothis('Parameter')" >Rufe JavaScript-Funktion auf</A>
</form>
</body>
</html>
Hallo
Versuchs doch mal mit
document.forms['ffp'].elements['public'].value=thisaction;
Ausßerdem möchte ich dich darauf hinweisen, dass .submit()
nur mit Forms klappt die auf ein CGI zurückgreifen!