1.加载
dojo.addOnLoad(function() {
getTreeJson();
});
function getTreeJson() {
dojo.xhrPost( {
url : 'getTreeJson.do',//测试
preventCache : true,
handleAs : 'json',load : function(json) {
loadTree(json);
}
});
}
没完,待续...