JQuery 带 Jquery 库的组织结构图 [dependency] 3.1.0 正在运行,但不适用于 1.11.1 版本

JQuery Org Chart with Jquery library [dependency] 3.1.0 is working but not working with 1.11.1 version

我正在使用查询组织结构图来显示组织级别图表。当我使用查询版本 jquery-3.1.0.min 但当我使用查询版本 jquery 时它工作正常-1.11.1.min ,它不起作用我在加载页面时遇到以下错误。

link 到插件是:https://github.com/dabeng/OrgChart

图表初始化为

$('#chart-container').orgchart({
              'data' : createStructure(), /*js function to get json structure */
              'ajaxURL': ajaxURLs,
              'nodeContent': 'title',
              'nodeId': 'id',
              'exportButton': true,
              'exportFilename': 'MyOrgChart'
            });

https://github.com/dabeng/OrgChart 将与 jquery-3.1.0.min 一起使用。它不支持 jquery-1.11.1.min

只需使用 jquery-3.1.0.min 作为 jquery 版本,就可以了。

谢谢