Affichage des articles dont le libellé est L004. Afficher tous les articles
Affichage des articles dont le libellé est L004. Afficher tous les articles

jeudi 13 octobre 2011

Jang Javascript Cours Javascript L005 : window.confirm()

Jang Javascript Cours Javascript Learn Javascript L005 : window.confirm()

Keywords
window.confirm() : Affiche un message dans une boîte de dialogue (dialog box) pour avoir une confirmation .


<html>

<head >
<title > Cours Javascript L005 : window.confirm() </title >

</head>

<body>


<script language="Javascript">

<!--

var tontu = window.confirm("? "); // Affiche un message dans une boîte de dialogue (dialog box) pour avoir une confirmation. Tontu bi (wolof) i.e la réponse (français).

document.write (tontu); //Affiche true ou false

// -->

</script>

</body>

</html>

mercredi 12 octobre 2011

Jang Javascript Cours Javascript L004 : window.alert()

Jang Javascript Cours Javascript Learn Javascript L004 : window.alert()

Keywords
window.alert() : Affiche un message dans une boîte de dialogue (dialog box)


<html>

<head >
<title > Cours Javascript L004 : window.alert() </title >

</head>

<body>


<script language="Javascript">

<!--

window.alert("Na nga def "); // Affiche Na nga def dans une boîte de dialogue (dialog box)

// -->

</script>

</body>

</html>