Bonjour tout le monde,
J'ai besoin de construire une arborescence avec JQuery, j'ai suivi le tutoriel suivant : http://abeautifulsite.developpez.com...ence-fichiers/
Pour la tester, j'ai créé un répertoire test dans lequel j'ai copié les fichier suivant : jqueryFileTree.css, jqueryFileTree.js, jQueryEasing.js, jqueryFileTree.php, jquery.js et mon fichier qui doit recevoir l'arborescence test.php, son code est le suivant :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
	<head>
		<title>jQuery File Tree Demo</title>
		<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
 
		<style type="text/css">
			BODY,
			HTML {
				padding: 0px;
				margin: 0px;
			}
			BODY {
				font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 11px;
				background: #EEE;
				padding: 15px;
			}
 
			H1 {
				font-family: Georgia, serif;
				font-size: 20px;
				font-weight: normal;
			}
 
			H2 {
				font-family: Georgia, serif;
				font-size: 16px;
				font-weight: normal;
				margin: 0px 0px 10px 0px;
			}
 
			.example {
				float: left;
				margin: 15px;
			}
 
			.demo {
				width: 800px;
				height: 400px;
				border-top: solid 1px #BBB;
				border-left: solid 1px #BBB;
				border-bottom: solid 1px #FFF;
				border-right: solid 1px #FFF;
				background: #FFF;
				overflow: scroll;
				padding: 5px;
			}
 
			P.note {
				color: #999;
				clear: both;
			}
		</style>
 
<script src="./jquery.js" type="text/javascript"></script>
<script src="./jQueryEasing.js" type="text/javascript"></script>
<script src="./jquery_easing_compatibility.js" type="text/javascript"></script>
<script src="./jqueryFileTree.js" type="text/javascript"></script>
<link href="./jqueryFileTree.css" rel="stylesheet" type="text/css" media="screen" />  
 
		<script type="text/javascript">
		$(document).ready( function() {
			$('#fileTreeDemo').fileTree({
				root: '/',
				script: 'jqueryFileTree.php',
				expandSpeed: 1000,
				collapseSpeed: 1000,
				multiFolder: false
				}, function(file) { 
					alert(file);
				});
			}); 
		</script>
	</head>
 
	<body>
 
		<h1>jQuery File Tree Demo</h1>
 
		<div class="example">
			<h2>Default options</h2>
			<div id="fileTreeDemo" class="demo">
			</div>
		</div>
	</body>
</html>
Avec tous ces documents, j'ai aussi mis le dossier qui comporte les images qui seront utilisées dans l'affichage de l'arborescence : imagestree.
Normalement tout est bien placé mais quand j'essaie de visualiser l'arborescence c'est ce que j'obtiens.
Pièce jointe 61927

Aidez-moi s'il vous plaît, je pense que c le root qu'il n'arrive pas à détecter mais je ne sais pas comment corriger celui là.
Merci d'avance..