1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
<html>
<head>
<meta http-equiv="Content-Language" content="fr">
<title>Nouvelle page 1</title>
</head>
<body>
<form method="POST" action="--WEBBOT-SELF--">
<p>
<select size="1" name="D1" id="dat">
<option selected value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select></p>
<p> </p>
<p>
<input type="button" value="Bouton" name="B1" onclick= "verif()" >
</form>
<script>
function verif()
{
if (dat.option.value== "1")
alert("yes");
else
alert("no");
}
</script>
</body>
</html> |