首先准备好juqury
ui
ztree 的js文件和css 文件
接下来的步骤祥看本文希望对大家有所帮助
第一步先准备好juquryuiztree 的js文件和css 文件
第二步examplejsp文件代码中写
复制代码 代码如下:
引入jqueryui
ztree 的js和css文件
<body>
<button value="点击弹出树的dialog对话框" onclick ="getTree()"/>
<div id="ztree" class="ztree"/>
</body>
<script type="text/javascript">
function getTree(){
var url = "<c:url value=
xx
html
/>";
var setting={
};
var zNodes =[];
var option={
width:
hight:
};
$
ajax({
url : url
success : function(data){
$
each(data
funtion(n
d){
zNode
push({
id:d
id
name:d
name
pId:d
pId
})
});
$
fn
init
ztree($(
#ztree
)
setting
zNode);
$(
#ztree
)
dialog(option);
}
})
}
</script>
第三步后台提供数据
复制代码 代码如下:
@RequestMapping("/zone_ajaxtree")
@ResponseBody
public List<ZoneBody> zone_ajaxtree() {
List<ZoneBody> zones = zoneBodyService
getZone_ajax();
return zones;
}
因为要用到@ResponseBody要引入jacksoncoreasljar和jacksonmapperasljar在mvcxml文件中要有代码
复制代码 代码如下:
<bean
class="orgspringframeworkwebservletmvcannotationAnnotationMethodHandlerAdapter">
<property name="webBindingInitializer">
<bean class="combuildingcontrollerBindingInitializer" />//这里为用户自定义的
</property>
<property name="messageConverters">
<ref bean="jsonHttpMessageConverter" />//这里为@responseBody提供json的支持
</property>
</bean>
<bean id="jsonHttpMessageConverter"
class="orgspringframework