I’m working on a small xml/html interface to list a bunch of buttons, and I’m having an issue with what I think is it looking for item types in nodes it shouldn’t be.
The XML has a <set>
of groups, and inside that will be <items>
which has a <type>
, a ‘button’ or ‘break’.
After a check if <type>
is a ‘button’, it then loads the <name>
, but it seems to be trying to load <name>
on ‘break’ types as well?
JavaScript
x
34
34
1
$(document).ready(function(){
2
if (window.XMLHttpRequest){
3
xmlhttp=new XMLHttpRequest();
4
}else{
5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
6
}
7
xmlhttp.open("GET","list.xml",false);
8
9
xmlhttp.send();
10
xmlDoc=xmlhttp.responseXML;
11
12
var data_sets = xmlDoc.getElementsByTagName("set");
13
14
for (var i = 0; i < data_sets.length; i++) {
15
$("body").append('<div id="set'+i+'"> <h2>SetContent'+i+'</h2></div>');
16
17
for (var j = 0; j < data_sets[i].children.length; j++) {
18
var type = data_sets[i].getElementsByTagName("type")[j].childNodes[0].nodeValue;
19
20
if(type=="button"){
21
var name = "name";
22
23
name = data_sets[i].getElementsByTagName("name")[j].childNodes[0].nodeValue;
24
//commenting out this name line above seems to stop the crash?
25
26
$("#set"+i).append('<button type=button id="btn_'+i+'_'+j+'">'+name+'</button>');
27
28
}else if(type=="break"){
29
$("#set"+i).append('<br>');
30
}
31
}
32
}
33
});
34
And the XML:
JavaScript
1
46
46
1
<?xml version="1.0" encoding="UTF-8"?>
2
<data>
3
<set name="Set A">
4
<item>
5
<type>button</type>
6
<name>btn 1 A</name>
7
<color>#ff00ff</color>
8
</item>
9
<item>
10
<type>button</type>
11
<name>btn 1 B</name>
12
<color>#ff00ff</color>
13
</item>
14
<item>
15
<type>break</type>
16
</item>
17
<item>
18
<type>button</type>
19
<name>btn 1 C</name>
20
<color>#ff00ff</color>
21
</item>
22
</set>
23
<set name="Set B">
24
<item>
25
<type>button</type>
26
<name>btn 2 A</name>
27
<color>#ff00ff</color>
28
</item>
29
<item>
30
<type>break</type>
31
</item>
32
<item>
33
<type>button</type>
34
<name>btn 2 B</name>
35
<color>#ff00ff</color>
36
</item>
37
<item>
38
<type>button</type>
39
<name>btn 2 C</name>
40
<color>#ff00ff</color>
41
</item>
42
</set>
43
44
</data>
45
46
Advertisement
Answer
You are looking up the jth type element, when you need ot llok up the jth item element.
It is a one line change, below:
JavaScript
1
35
35
1
$(document).ready(function(){
2
if (window.XMLHttpRequest){
3
xmlhttp=new XMLHttpRequest();
4
}else{
5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
6
}
7
xmlhttp.open("GET","list.xml",false);
8
9
xmlhttp.send();
10
xmlDoc=xmlhttp.responseXML;
11
12
var data_sets = xmlDoc.getElementsByTagName("set");
13
14
for (var i = 0; i < data_sets.length; i++) {
15
$("body").append('<div id="set'+i+'"> <h2>SetContent'+i+'</h2></div>');
16
17
for (var j = 0; j < data_sets[i].children.length; j++) {
18
var type = data_sets[i].getElementsByTagName("type")[j].childNodes[0].nodeValue;
19
20
if(type=="button"){
21
var name = "name";
22
23
//I have changed how you reference the name element
24
name = data_sets[i].getElementsByTagName("item")[j].getElementsByTagName("name")[0].childNodes[0].nodeValue
25
26
$("#set"+i).append('<button type=button id="btn_'+i+'_'+j+'">'+name+'</button>');
27
28
}else if(type=="break"){
29
$("#set"+i).append('<br>');
30
}
31
}
32
}
33
});
34
35
(and its a bit odd to have a variable named ‘type’, but that’s beside the point)