我有以下代码从xml获取输入并创建无序列表。
$(function() {
var map = function() {
if ($(this).is("parent")) {
var children = $(this).children().map(map).get().join('');
$(this).children().remove();
var result = "<li class='BGOfDiv'>" + $(this).text();
return result + "<ul>" + children + "</ul></li>";
}
if ($(this).is("Children")) {
return "<li class='BGOfDiv'>" + $(this).text() + "</li>";
}
};
$.get("test.xml", function(data) {
var result = $(data).map(map);
$("#org").html(result[0]);
$("#org").jOrgChart({
chartElement : '#chart',
dragAndDrop : false
});
dragNodes();
}, "html");
});
目前,我的xml看起来像这样
<?xml version="1.0" encoding="utf-8"?>
<Parent>Director
<Children>Exe Director1</Children>
<Children>Exe Director2</Children>
<Parent>Exe Director3
<Children>Sub Director 1</Children>
<Children>Sub Director 2</Children>
<Parent>Sub Director 3
<Children>Cameraman 1</Children>
<Children>Cameraman 2</Children>
</Parent>
</Parent>
</Parent>
但是,xml将用于保存某些图像的路径,我需要将其应用为每个节点的背景图像。这就是我的xml看起来像
<?xml version="1.0" encoding="utf-8"?>
<Parent>../images/1.jpg
<Children>../images/2.jpg</Children>
<Children>../images/3.jpg</Children>
<Parent>../images/4.jpg
<Children>../images/5.jpg</Children>
<Children>../images/6.jpg</Children>
<Parent>../images/7.jpg
<Children>../images/8.jpg</Children>
<Children>../images/9.jpg</Children>
</Parent>
</Parent>
</Parent>
我知道我需要使用.css
的{{1}}属性,并在创建新的jquery
元素时设置background-image
,但我无法确定如何做到这一点。
感谢您的期待。感谢您的帮助。
答案 0 :(得分:1)
如果$(this).text()
返回文件的网址,您只需在<li>
元素中添加该样式
"<li class='class' style='background-image: url(" + $(this).text() + ");'>...</li>"
当然你可能需要设置其他CSS,如背景位置,背景重复等。或者使用短版本的CSS如
"<li class='class' style='background: url(" + $(this).text() + ") no-repeat 0 0;'>...</li>"