danielerne
Mitglied
Hallo
Ich komme nicht mehr richtig weiter und bitte euch um Hilfe!
Ich habe ein Form:
Nun möchte ich es neu in JavaScript ausführen und sollte doch eigentlich so funktionieren:
Beim Form klappt es wunderbar und bei der Ajax Version bekomme ich zwar die Seite zurück, jedoch nicht richtig.
Woran könnte es liegen? Habe ich was übersehen?
Danke und Gruss
Ich komme nicht mehr richtig weiter und bitte euch um Hilfe!
Ich habe ein Form:
HTML:
<FORM method="post" name="submit" action="searchfw.pl">
<INPUT TYPE="text" NAME="instr" VALUE="" SIZE="24">
<INPUT TYPE="HIDDEN" NAME="lang" VALUE="fwde">
<INPUT TYPE="HIDDEN" NAME="connect" VALUE="or">
<p>
<INPUT TYPE="radio" NAME="match" VALUE="exact" CHECKED>
genaues Stichwort
<INPUT TYPE="radio" NAME="match" VALUE="beg">
Anfang des Stichworts
<INPUT TYPE="radio" NAME="match" VALUE="part">
Teil des Stichworts
<INPUT TYPE="radio" NAME="match" VALUE="fulltxt">
Volltext</p>
<p>
<label>Submit
<input type="submit" name="submit" id="submit" value="Submit" />
</label>
<BR>
</p>
</FORM>
Nun möchte ich es neu in JavaScript ausführen und sollte doch eigentlich so funktionieren:
Code:
xmlReq.open("POST","searchfw.pl",true);
xmlReq.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlReq.send(lang=fwde&connect=or&match=exact&instr=Text&");
xmlReq.onreadystatechange = handleHttpResponse;
Beim Form klappt es wunderbar und bei der Ajax Version bekomme ich zwar die Seite zurück, jedoch nicht richtig.
Woran könnte es liegen? Habe ich was übersehen?
Danke und Gruss