Forum de discussion
Forum « Programmation Javascript » (archives)
problème pour rafraichir ma page
Envoyé: 9 décembre 2002, 11h40 par lalie
Le code suivant a pour objectif de rafraichir (grâce à la fonction javascript 'xrefresh') dès que je redimensionne avec ma souris la fenêtre du navigateur (c'est NETSCAPE 4.5 dont il s'agit).
Alors à chaque fois une alerte avec "coco", puis une alerte avec les nouvelles dimensions de la fenêtre doivent s'afficher.
si je rajoute une balise qui appelle un fichier flash (vers la fin du script: la balise 'object'), ça ne veut plus se réactualiser, le rafraichissement ne se fait plus lorsque je redimensionne ma fenêtre..........
Quelq'un peut-il me dire pourquoi? Merci beaucoup d'avance!!! C'est urgent.
****************************************<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function BrowserCheck() {
var b = navigator.appName
if (b=="Netscape") this.b = "ns"
else if (b=="Microsoft Internet Explorer") this.b = "ie"
else this.b = b
this.v = parseInt(navigator.appVersion)
this.ns = (this.b=="ns" && this.v>=4)
this.ns4 = (this.b=="ns" && this.v==4)
this.ns5 = (this.b=="ns" && this.v==5)
this.ie = (this.b=="ie" && this.v>=4)
this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0)
this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>0)
if (this.ie5) this.v = 5
this.min = (this.ns||this.ie)
}
function xrefresh(){
document.location.reload();
}
// automatically create the "is" object
is = new BrowserCheck()
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#FFFFFF" onResize="xrefresh();">
111111
<BR>
<SCRIPT LANGUAGE="JavaScript">
alert("coco");
winW = (is.ns)? window.innerWidth-16 : document.body.offsetWidth-20;
winH = (is.ns)? window.innerHeight : document.body.offsetHeight;
alert("winW : " + winW + " winH : " + winH);
</SCRIPT>
<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" WIDTH="800" HEIGHT="133">
<PARAM NAME=movie VALUE="Animation2.swf">
<PARAM NAME=quality VALUE=high>
<EMBED SRC="Animation2.swf" QUALITY=high PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" TYPE="application/x-shockwave-flash" WIDTH="800" HEIGHT="33">
</EMBED>
</OBJECT>
<br>
222222
</BODY>
</HTML>
Réponses
|