jquery 의 dialog 와 ztree 를 결합 하여 실현 절차

1979 단어 jquerydialogztree
첫 번 째 단계:jqury-ui,ztree 의 js 파일 과 css 파일 을 준비 합 니 다.두 번 째 단계:example.jsp 파일 코드 에 쓰기
 
.. 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:200,
hight:300
};
$.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;
}
@Response Body 를 사용 하려 면 jackson-core-asl-1.8.7.jar 와 jackson-mapper-asl-1.8.7.jar 를 도입 해 야 합 니 다.mvc.xml 파일 에 코드 가 있어 야 합 니 다.
 
<bean
class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="webBindingInitializer">
<bean class="com.building.controller.BindingInitializer" />//
</property>
<property name="messageConverters">
<ref bean="jsonHttpMessageConverter" />// @responseBody json
</property>
</bean>
<bean id="jsonHttpMessageConverter"
class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" />

좋은 웹페이지 즐겨찾기