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>