<html>
<head>
<title>www.tutorials.de</title>
<meta name="author" content="Quaese">
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
<!--
function showControls(objSel){
for ( var i = 0; i < 5; i++ ){
objSel.form.elements[ "input" + i ].style.display = ( i < objSel.options[objSel.selectedIndex].value ) ? "block" : "none";
}
}
function changeContent(objSel){
document.getElementById("formContentHolder").innerHTML = document.getElementById("content_"+objSel.selectedIndex).innerHTML;
}
//-->
</script>
</head>
<body>
<form action="get_formdata_test.php" method="post">
<p>
Bitte Veranstalungstyp auswählen:
<select onchange="changeContent(this);">
<option>Konzert</option>
<option>Vortrag</option>
</select>
</p>
<div id="formContentHolder">
Ich bin der Formularinhalt für <b>Bands</b>. Hier die Felder und Elemente eintragen, die gewünscht sind.<br>
<select name="kind" onchange="showControls(this)">
<option value="0">Anzahl der Bands</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select><br><br>
<input type="text" name="input0" style="display:none"><br>
<input type="text" name="input1" style="display:none"><br>
<input type="text" name="input2" style="display:none"><br>
<input type="text" name="input3" style="display:none"><br>
<input type="text" name="input4" style="display:none"><br>
</div>
<p><input type="submit" value="ab damit ..."></p>
</form>
<div style="display: none;" id="formContent">
<div id="content_0">
Ich bin der Formularinhalt für <b>Bands</b>. Hier die Felder und Elemente eintragen, die gewünscht sind.<br>
<select name="kind" onchange="showControls(this)">
<option value="0">Anzahl der Bands</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select><br><br>
<input type="text" name="input0" style="display:none"><br>
<input type="text" name="input1" style="display:none"><br>
<input type="text" name="input2" style="display:none"><br>
<input type="text" name="input3" style="display:none"><br>
<input type="text" name="input4" style="display:none"><br>
</div>
<div id="content_1">
Ich bin der Formularinhalt für <b>Vorträge</b>. Hier die Felder und Elemente eintragen, die gewünscht sind.
</div>
</div>
</body>
</html>