Hi,
ich bin schon ne Weile am Rumprobieren und googln aber komm zu keinem Ergebnis.
Ich erstell per JS input Felder. Soweit so gut. Ein Feld kann ich problemlos erstellen und abschicken. Wenn ich aber ein zweites hinzufügen will klappts nicht.
Was mach ich falsch?
Und ich hätt noch ne Frage dazu. Wie erstellt man auf diese Weise select Felder?
ich bin schon ne Weile am Rumprobieren und googln aber komm zu keinem Ergebnis.
Ich erstell per JS input Felder. Soweit so gut. Ein Feld kann ich problemlos erstellen und abschicken. Wenn ich aber ein zweites hinzufügen will klappts nicht.
Was mach ich falsch?
PHP-Code:
<script type="text/javascript">
function aktionSenden(aktion, id) {
document.getElementById("frm").innerHTML = '<form method="post" name="test" action="test.php" id="hiddenForm"></form>';
var inputAktion = document.createElement("INPUT");
inputAktion.type = "text";
inputAktion.value = 'tttttttttttttttttt';
inputAktion.name = "aktion";
inputAktion.id = "aktion";
document.getElementById("hiddenForm").appendChild(inputAktion);
var inputAktion2 = document.createElement("INPUT2");
inputAktion2.type = "text";
inputAktion2.value = 'rrrrrrrrrrrrrrrr';
inputAktion2.name = "aktion2";
inputAktion2.id = "aktion2";
document.getElementById("hiddenForm").appendChild(inputAktion2);
//document.getElementById("hiddenForm").submit();
}
</script>
Kommentar