Bouton ouvrir et fermer
Fermé
luks
-
28 juil. 2009 à 16:20
Thamior Messages postés 264 Date d'inscription lundi 11 février 2008 Statut Membre Dernière intervention 18 mars 2014 - 28 juil. 2009 à 16:28
Thamior Messages postés 264 Date d'inscription lundi 11 février 2008 Statut Membre Dernière intervention 18 mars 2014 - 28 juil. 2009 à 16:28
A voir également:
- Bouton ouvrir et fermer
- Comment ouvrir un fichier epub ? - Guide
- Ouvrir fichier .bin - Guide
- Comment ouvrir un fichier docx ? - Guide
- Ouvrir avec - Guide
- Ouvrir onglet fermé - Guide
1 réponse
Thamior
Messages postés
264
Date d'inscription
lundi 11 février 2008
Statut
Membre
Dernière intervention
18 mars 2014
47
28 juil. 2009 à 16:28
28 juil. 2009 à 16:28
Voici un exemple :
Page.html
<html>
<head>
<title>Test</title>
<script>
var newWin;
function openWin() {
this.newWin = window.open("wait.html","fenetre2","toolbar=yes,location=yes,menubar=no, height=402, width=359");
}
function closeWin() {
this.newWin.close();
}
</script>
</head>
<body>
<input type="button" onClick="javascript:openWin();" value="ouverture popup" />
<input type="button" onClick="javascript:closeWin();" value="fermeture popup" />
</html>
wait.html
<html>
<head />
<body>
Changement en cours...
</body>
</html>
Page.html
<html>
<head>
<title>Test</title>
<script>
var newWin;
function openWin() {
this.newWin = window.open("wait.html","fenetre2","toolbar=yes,location=yes,menubar=no, height=402, width=359");
}
function closeWin() {
this.newWin.close();
}
</script>
</head>
<body>
<input type="button" onClick="javascript:openWin();" value="ouverture popup" />
<input type="button" onClick="javascript:closeWin();" value="fermeture popup" />
</html>
wait.html
<html>
<head />
<body>
Changement en cours...
</body>
</html>