Bonsoir, voici mon soucis, je suis un débutant.. voir jamais touché au jquery, j'ai donc fait mon formulaire php pour accumuler diverses options étant tarifés, et j'aimerais donc faire un total en temps réel ainsi qu'un total final qui sera retenu par le php pour le prix mensuel, comment y procéder ?
Voici un extrait de mon code:
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 <table width="38%" cellspacing="0" cellpadding="0" class="configtable"> <tr><td class="fieldlabel"><p>Architecture:</p></td><td class="fieldarea"> <select name="Architecture" onchange="recalctotals()"> <option value="Select" selected="selected">Séléctionnez </option> <option value="32">32 Bits</option> <option value="64">64 Bits</option> </select> </table> <br /> <table width="41%" cellspacing="0" cellpadding="0" class="configtable"> <tr><td class="fieldlabel"><p>Langue: </p></td><td class="fieldarea"> <select name="Langue" onchange="recalctotals()"> <option value="Default" selected="selected">Séléctionnez </option> <option value="fr">Français</option> <option value="en">Anglais</option> <option value="de">Allemand</option> <option value="es">Espagnol</option> <option value="it">Italien</option> <option value="pl">Polonais</option> <option value="pt">Portugal</option> </select> </table>
Merci d'avance
Partager