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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
function changer() {
if (confirm("Voulez-vous changer la couleur de fond de page ?")) {
document.bgColor="pink";
}
else alert("Pas de changement...");
}
function saisir() {
saisie = prompt("Saisissez votre texte :", "Texte par défaut")
alert("Vous avez écrit : "+saisie);
}
</script>
</head>
<body>
<form>
<input type="button" value="Colorer le fond" onclick="changer();">
<br>
<input type="button" value="Saisir un texte" onclick="saisir();">
</form>
</body>
</html> |
Partager