You can use the 'formatter' function to render an <img> element on the node.
$('#tt').tree({
formatter:function(node){
var s = node.text;
if (node.text == 'Photos'){
s += '<img src="http://www.jeasyui.com/easyui/themes/icons/man.png"/>';
}
return s;
}
})