Français
<!--Ajoutez le code suivant à la zone <body>--> <SCRIPT LANGUAGE="JavaScript"> <!--// function countChoices(obj) { max = 2; box1 = obj.form.box1.checked ; box2 = obj.form.box2.checked; box3 = obj.form.box3.checked; nombre = (box1 ? 1 : 0) + (box2 ? 1 : 0) + (box3 ? 1 : 0) ; > max) { alert("Désolé, vous ne pouvez sélectionner que les éléments " + max + " ! " obj.checked = false } } //--> </script> <form name="form"> Veuillez maximiser Sélectionnez 2 éléments : <p> <input type=checkbox name=box1 onClick="countChoices(this)"> Sélectionnez l'élément 1 <p> <input type=checkbox name=box2 onClick="countChoices(this)"> Sélectionnez l'élément 2 <p> <input type=checkbox name=box3 onClick="countChoices(this)"> Sélectionnez l'élément 3 <p> </form>