Salut,je suis entrain de faire un site qui permet de calculer les amendes. ( mod rp d'un jeu )
Je voudrais que le site fasse la somme de toutes les cases choisies .
Mais je ne sais pas quel script faut-il utiliser ?
Quelqu'un peut me guider ?
J'aimerais de plus que l'utilisateur puisse choisir le montant dans une case et l'ajouter dans le total (si c'est possible ) pour l'amende "Vitesse excessive" .
Merci d'avance
Code:<table> <tr> <th> Véhicules terrestres </th> <th> Stationnement interdit et/ou génant </th> <th> 10 000€ </th> <th> <INPUT TYPE="checkbox" data-prix="10000" > </th> </tr> <tr> <th> </th> <th> Défaut d'éclairage </th> <th> 5 000€ </th> <th> <INPUT TYPE="checkbox" data-prix="5000" > </th> </tr> <tr> <th> </th> <th> Dégradation de bien publics </th> <th> 10 000€ </th> <th> <INPUT TYPE="checkbox" data-prix="10000" > </th> </tr> <tr> <th> </th> <th> Conduite en offroad </th> <th> 20 000€ </th> <th> <INPUT TYPE="checkbox" data-prix="20000" > </th> </tr> <tr> <th> </th> <th> Véhicule non conforme </th> <th>7 500€ + saisi du véhicule </th> <th> <INPUT TYPE="checkbox" data-prix="7500" > </th> </tr> <tr> <th> </th> <th> Conduite sans permis </th> <th> 40 000€ + saisi du véhicule </th> <th> <INPUT TYPE="checkbox" data-prix="40000" > </th> </tr> <tr> <th> </th> <th> Conduite d'un karting (hors circuit) </th> <th> 25 000€ + mise en fourrière du kart </th> <th> <INPUT TYPE="checkbox" data-prix="25000" > </th> </tr> <tr> <th> </th> <th> Excès de vitesse inférieur à 10 km/h </th> <th> Simple avertissement </th> <th> <INPUT TYPE="checkbox" data-prix="0" > </th> </tr> <tr> <th> </th> <th> Excès de vitesse entre 10km/h et 50 km/h </th> <th> 8 000€ par tranche de 10 km/h </th> <th> <INPUT TYPE="checkbox" data-prix="8000" > </th> </tr> <tr> <th> </th> <th> Excès de vitesse supérieur à 50 km/h </th> <th> 10 000€ par tranche de 10km/h </th> <th> <INPUT TYPE="checkbox" data-prix="10000" > </th> </tr> <tr> <th> </th> <th> Vitesse excèssive </th> <th> 10 000€ à 65 000€ (en fonction des circonstances) </th> <th> <INPUT TYPE="text" NAME="pu38" SIZE=5 > </th> </tr> <tr> <th> </th> <th> Non respect de la signalisation</th> <th> 5 500€ + saisi du véhicule </th> <th> <INPUT TYPE="checkbox" data-prix="5500" > </th> </tr> <tr> <th> </th> <th> Refus d'obtempérer </th> <th>60 000€ </th> <th> <INPUT TYPE="checkbox" data-prix="60000" > </th> </tr> </table> <p> Total : <th> <INPUT TYPE="text" NAME="pu38" SIZE=5 disabled > </p>
-----