Hallo,
hab mal eine Frage, habe einen Code bekommen für einen Configurator.
Leider sind darin nur listen enthalten. Möchte aber gerne noch Radiobuttons einfügen.
Kann da jemnd villeicht mal drüber schaun?
LG Andiii
hab mal eine Frage, habe einen Code bekommen für einen Configurator.
Leider sind darin nur listen enthalten. Möchte aber gerne noch Radiobuttons einfügen.
Kann da jemnd villeicht mal drüber schaun?
LG Andiii
PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Unbenanntes Dokument</title>
<script language="javascript">
var summe = 0;
function prepare(){
summe = parseInt(document.all.form1.liste1.value) + parseInt(document.all.form1.liste2.value) + parseInt(document.all.form1.liste3.value);
document.all.summe.innerHTML = summe;
}
function calculate(){
summe = parseInt(document.all.form1.liste1.value) + parseInt(document.all.form1.liste2.value) + parseInt(document.all.form1.liste3.value);
document.all.summe.innerHTML = summe;
}
</script>
HTML:
</head>
<body onLoad="prepare()">
<form name="form1" method="post" action="">
<br>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><select name="liste1" id="liste1" onChange="calculate()">
<option value="100">artikel1</option>
<option value="200">artikel2</option>
</select></td>
<td><select name="liste2" id="liste2" onChange="calculate()">
<option value="100">artikel1</option>
<option value="200">artikel2</option>
</select></td>
<td><select name="liste3" id="liste3" onChange="calculate()">
<option value="100" selected>artikel1</option>
<option value="200">artikel2</option>
</select></td>
<td><p id="summe">0</p></td>
</tr>
</table>
<br>
</form>
</body>
</html>
Zuletzt bearbeitet: