我正在使用查询组织结构图来显示组织级别图表。当我使用查询版本 jquery-3.1.0.min 时工作正常但当我使用查询版本 jquery-1.11.1.min 时,它无法正常工作加载页面时出现以下错误。
插件链接是: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'
});
答案 0 :(得分:1)
https://github.com/dabeng/OrgChart适用于 jquery-3.1.0.min 。它不支持 jquery-1.11.1.min
只需使用 jquery-3.1.0.min 作为jquery版本,它就可以了。
由于