[JAVAScript] Porblème d'insertion
Résolu/Fermé
Barichon
Messages postés
19
Date d'inscription
mardi 29 septembre 2009
Statut
Membre
Dernière intervention
24 novembre 2009
-
12 oct. 2009 à 12:33
Barichon Messages postés 19 Date d'inscription mardi 29 septembre 2009 Statut Membre Dernière intervention 24 novembre 2009 - 15 oct. 2009 à 14:44
Barichon Messages postés 19 Date d'inscription mardi 29 septembre 2009 Statut Membre Dernière intervention 24 novembre 2009 - 15 oct. 2009 à 14:44
A voir également:
- [JAVAScript] Porblème d'insertion
- Insertion liste déroulante excel - Guide
- Telecharger javascript - Télécharger - Langages
- Insertion signature word - Guide
- Insertion sommaire word - Guide
- Insertion filigrane word - Guide
4 réponses
Groarh
Messages postés
682
Date d'inscription
vendredi 1 août 2008
Statut
Membre
Dernière intervention
28 juin 2015
185
12 oct. 2009 à 13:52
12 oct. 2009 à 13:52
Salut,
ta fonction doit faire partie de la chaîne que tu mets dans echo. Ça m’étonne d’ailleurs que tu n’aies pas de message d’erreur…
N’oublie pas d’échapper les guillemets autour de Scroller().
;)
ta fonction doit faire partie de la chaîne que tu mets dans echo. Ça m’étonne d’ailleurs que tu n’aies pas de message d’erreur…
N’oublie pas d’échapper les guillemets autour de Scroller().
;)
Barichon
Messages postés
19
Date d'inscription
mardi 29 septembre 2009
Statut
Membre
Dernière intervention
24 novembre 2009
12 oct. 2009 à 14:16
12 oct. 2009 à 14:16
Voila,
J'ai mis cela:
echo "<SCRIPT LANGUAGE=\"JavaScript\"> ";
function Scroller() {
window.scrollBy(0,100);
}
setTimeout("Scroller()", 500);
echo"</SCRIPT>";
mais là pour le coup j'ai une erreur de la page (page graph_view.php du logiciel de monitoring cacti)
J'ai mis cela:
echo "<SCRIPT LANGUAGE=\"JavaScript\"> ";
function Scroller() {
window.scrollBy(0,100);
}
setTimeout("Scroller()", 500);
echo"</SCRIPT>";
mais là pour le coup j'ai une erreur de la page (page graph_view.php du logiciel de monitoring cacti)
Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 120 Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 121 Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 122 Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 123 Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 124 Warning: Cannot modify header information - headers already sent by (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 126 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /usr/share/cacti/site/graph_view.php:8) in /usr/share/cacti/site/include/global.php on line 130
Groarh
Messages postés
682
Date d'inscription
vendredi 1 août 2008
Statut
Membre
Dernière intervention
28 juin 2015
185
14 oct. 2009 à 13:56
14 oct. 2009 à 13:56
echo "<script type=\"text/javascript\"> function Scroller() { window.scrollBy(0,100); } setTimeout(Scroller, 500); </script>";
Barichon
Messages postés
19
Date d'inscription
mardi 29 septembre 2009
Statut
Membre
Dernière intervention
24 novembre 2009
15 oct. 2009 à 14:44
15 oct. 2009 à 14:44
c'est bon merci j'ai trouvé ;)