Forum de discussion
Forum « Programmation Javascript » (archives)
Performance ???
Envoyé: 19 juillet 2004, 3h19 par blues
voilà, en fait je me pose la question de savoir qu'elle intéret y'a t'il à créer un menu en javascript comme suit:
function Decode(tChaine) {
while (true) {
var i = tChaine.indexOf('%20');
if (i < 0) break;
tChaine = tChaine.substring(0,i) + ' ' + tChaine.substring(i + 3, tChaine.length);
}
return unescape(tChaine)
}
function MonMenu(Rub)
{
if (Rub.length==0){
Rub = "Accueil"
}
LtMenu = ["Accueil","Jouer","Aprendre à jouer","Règles","Classement"]
var img_hit = 'NavBare_hit_02.gif'
var img_Stand = 'NavBare_Stand.gif'
html = '</table>';
html +='<table width="100%" border="0" background="NavBareGraph/NavBareBg.gif" height="47" cellpadding="0" cellspacing="0">'
html +='<tr>'
html +='<td height="21"> </td>'
for (i = 0; i<LtMenu.length;i++){
if(Rub == LtMenu[i]){
img = img_hit
}else{
img = img_Stand
}
html +='<td background="NavBareGraph/'+img+'" width="112" height="24">'
html +='<div align="center"><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><b><font color="#FFFFCC"><a href="Menu.html?'+LtMenu[i]+'">'+LtMenu[i]+'</a></font></b></font></div>'
html +='</td>'
}
html +='</tr>'
html +='<tr>'
html +='</tr>'
html +='</table>'
return(html);
}
ces scripts sont dans un fichier Menu.Js en externe
est sont appelé depuis un fichier Menu.html comme suit:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<script language="JavaScript" src="Menu.js"></script>
<body bgcolor="#FFFFCC" text="#000000">
<script language="JavaScript">
document.write( MonMenu(Decode(location.search.substring(1,location.search.length))))
</script>
</body>
</html>
ma question est donc de savoir si c'est plus performent de le faire en javascript au lieux de le mettre en html pure , je consoit bien l'intérert pratique, mais je ne sais pas si ca change quelque chose du point de vue de la performence....
voilà je ne sais pas si j'ai été claire... jespere que quelqu'un aura une réponse pour moi, merci d'avance...
Réponses
|