{id : '0', text : '北京财政', children : [{id : '0001', text : '大兴区政府', leaf : true},{id : '0002', text : '大兴区委', leaf : true},{id : '0004', text : '大兴区政协', leaf : true},{id : '0006', text : '大兴区人大', leaf : true},{id : '0199', text : '预算单位', leaf : true},{id : '0310', text : '局内其他机构', leaf : true}]}
用jquery的ajax1 2 3 4 5 6 7 8 9 10 $.post("xxx.action", { 参数名1: "值1", 参数名2: "值2" }, function(data){ //data为返回的json字符串,这里转对象 var json = eval("(" + data + ")"); //遍历json for(var j in json) { var key = j; var value = json[j]; } }); json字符串怎么来1 2 3 4 JSONObject json = new JSONObject(); json.put("参数名1", "值1"); json.put("参数名2", "值2"); return json.toJSONString(); 这里需要用到一个jar包fastjson.jar 已经给你放到附件里面