Comment créer : Convertisseur de poids

Apprenez à créer un convertisseur de poids en utilisant HTML et JavaScript.

Convertisseur de poids

Entrez une valeur dans n'importe quel champ pour convertir entre les unités de mesure de poids :

Créer un convertisseur de poids

Créez un élément d'entrée qui peut convertir une unité de mesure de poids en une autre.

Première étape - Ajouter HTML :

Example - Convert pounds to kilograms

<p>
  <label>Pounds</label>
  <input id="inputPounds" type="number" placeholder="Pounds"
  oninput="weightConverter(this.value)" onchange="weightConverter(this.value)">
</p>
<p>Grams: <span id="outputGrams"></span></p>

Step 2 - Add JavaScript:

Example - Convert pounds to kilograms

/* When the input field receives input, convert the value from pounds to kilograms. */
function weightConverter(valNum) {
  document.getElementById("outputGrams").innerHTML = valNum / 0.0022046;
{}

Try it yourself

Convert pounds to other units

The following table shows how to convert pounds to other weight units:

Description Formula Example
Convert pounds to kilograms kg=lb/2.2046 Essayez
Convert pounds to ounces oz=lb*16 Essayez
Convert pounds to grams g=lb/0.0022046 Essayez
Convert pounds to stones st=lb*0.071429 Essayez

Convert kilograms to other units

The following table shows how to convert kilograms to other weight units:

Description Formula Example
Convert kilograms to pounds lb=kg*2.2046 Essayez
Convert kilograms to ounces oz=kg*35.274 Essayez
Convert kilograms to grams g=kg*1000 Essayez
Convert kilograms to stones st=kg*0.1574 Essayez

Convert ounces to other units

The following table shows how to convert ounces to other weight units:

Description Formula Example
Convert ounces to pounds lb=oz*0.0625 Essayez
Convert ounces to kilograms kg=oz/35.274 Essayez
Convert ounces to grams g=oz/0.035274 Essayez
Convert ounces to stones st=oz*0.0044643 Essayez

Convert grams to other units

The following table shows how to convert grams to other weight units:

Description Formula Example
Convert grams to pounds lb=g*0.0022046 Essayez
Convert grams to kilograms kg=g/1000 Essayez
Convert grams to ounces oz=g*0.035274 Essayez
Convert grams to stones st=g*0.00015747 Essayez

Convert pounds to other units

The following table shows how to convert pounds to other weight units:

Description Formula Example
Convert pounds to pounds lb=st*14 Essayez
Convert pounds to kilograms kg=st/0.15747 Essayez
Convertir les stones en onces oz=st*224 Essayez
Convertir les stones en grammes g=st/0.00015747 Essayez