1234567891011121314151617181920212223 |
- $(document).ready(function() {
- var setting = {
- view : {
- selectedMulti : false,
- showIcon : true,
- },
- key : {
- title : "title"
- },
- async : {
- enable : true,
- type : "post",
- dataType : "json",
- contentType : "application/x-www-form-urlencoded", //已form的形式提交参数
- url : contextPath + "/cbdt/cbdtTreeData.html",
- autoParam : [ "id", "name", "treeNodeType" ],
- },
- callback : {
- }
- };
- $.fn.zTree.init($("#tree"), setting);
- });
|