Je doit faire une relation 1/2*m*v^2 sur un site html avec un menu déroulant pour choisir le véhicule et un champ texte pour la vitesse mais j'arrive pas a faire la relation vehicule par vehicule et l'indiquer dans un champs texte verouiller puis le transformer en nombres d'étages, quelqu'un peut m'aider ?
Voici le code actuel :
<html>
<head>
<title>Page de présentation</title>
<link href="présentation.css" rel="stylesheet" type="text/css" />
</head>
<SCRIPT LANGUAGE="javascript">
function calcul(vehicule)
{
form1=15
form2=1200
form3=3500
form4=12000
form5=19000
}
</SCRIPT>
<body>
<div id="bandeau" >
<h1> Choc Vitesse </h1>
</div>
<div id="menu">
<input class="bouton" value="Accueil" onclick="window.location.href='présentation.html'">
<input class="bouton" value="Alcoolémie" onclick="window.location.href='alcoolémie.html'">
<input class="boutonclic" value="Choc Vitesse" onclick="window.location.href='choc vitesse.html'" disabled >
<input class="bouton" value="Distance de sécurité" onclick="window.location.href='distance sécurité.html'">
<input class="bouton" value="Permis à points" onclick="window.location.href='permisàpoints.html'">
<input class="bouton" value="Radar tronçon" onclick="window.location.href='radar tronçon.html'">
</div>
<center>
<select name="vehicule" >
<FORM NAME="form1">
<option>Vélo</option>
</FORM>
<FORM NAME="form2">
<option>Voiture</option>
</FORM>
<FORM NAME="form3">
<option>Camionnette</option>
</FORM>
<FORM NAME="form4">
<option>Bus</option>
</FORM>
<FORM NAME="form5">
<option>Camion</option>
</FORM>
</select>
</br>
<input type="textbox" name="vitesse">
</br>
<input type="button" value="calcul" onclick="calcul(vehicule)">
</br>
<input type="textbox" value="" name="resultat" disabled >
</br>
<input type="textbox" value="" name="etage" disabled >
</br>
</center>
<div id="piedpage">
<center>
<h2> Benoît Leborgne / Louis Bonnelle / Axel Potier / Valentin Delbay / Samuel Degardin </h2>
</center>
<center>
<img src="benoît.jpg" height="200" width="150">
<img src="Louis.jpg" height="200" width="150">
<img src="axel.jpg" height="200" width="150">
<img src="delbay.jpg" height="200" width="150">
<img src="samuel.jpg" height="200" width="150">
</center>
</div>
</body>
</html>