HELP HELP

HELP HELP - Programmation

Marsh Posté le 04-07-2001 à 21:27:57    

Voila, j'ai écrit un script dans un fichier url.js et le texte est le suivant:  
 
URL = new Array;  
ImageURL = new Array;  
Commentaire = new Array;  
 
URL[0] = "http://www.ifrance.com/24h-tamiya-2001";  
ImageURL[0] = "htpp://www.ifrance.com/24h-tamiya-2001/images/Arc_inter.jpg";  
Commentaire[0] = "Visitez le site officiel des 24 heures Tamiya 2001 !";  
 
URL[1] = "http://www.multimania.com/aimrc";  
ImageURL[1] = "http://www.multimania.com/aimrc/images/auto.gif";  
Commentaire[1] = "Visitez le site officiel AIMRC!";  
 
 
Function affichpub()  
{  
numimage = Math.round(Math.random()*(URL.length-1));  
document.write ('<A HREF="'+URL[numimage]+'" target="_blank"><IMG SCR="'+ImageURL[numimage]+'"><BR>"'+Commentaire[numimage]+'</A>');  
setTimeout("AffichPub()",60000);  
}  
 
affichpub();  
 
et je tente d'éxécuter le script sur une page HTML par la commande suivante:  
 
<html>  
<head>  
</head>  
<body>  
<SCRIPT language="JavaScript" SCR="http://URL_DE_L'EMPLACEMENT_DU_SCRIPT/url.jsp"></SCRIPT>  
</body>  
 
Quelqu'un peut me dire pourquoi ca ne marche pas ?  
D'autant plus que j'ai recopié mot pour mot un paragraphe lu dans un bouquin !  
 
Merci d'avance !  
</html>

Reply

Marsh Posté le 04-07-2001 à 21:27:57   

Reply

Marsh Posté le 05-07-2001 à 01:23:34    

parce que t'as ecrit :
<SCRIPT language="JavaScript" SCR="http://URL_DE_L'EMPLACEMENT_DU_SCRIPT/url.jsp"></SCRIPT>  
</body>
 
au lieu de SRC !!!

Reply

Marsh Posté le 05-07-2001 à 13:13:50    

Merci bien vu !
Mais il y avais aussi une autre erreur !
Merci quand mem ca m'a aidé !

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed