2017-02-20 41 views
1

我正在使用查询组织级别图来显示组织级别图表。它工作正常,当我使用查询版本jquery-3.1.0.min但当我使用查询版本jquery-1.11.1.min,它无法正常工作我收到以下错误时加载页面。jQuery Org Chart with Jquery library [dependency] 3.1.0正在工作,但未与1.11.1版本一起工作

enter image description here

链接插件是: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

https://github.com/dabeng/OrgChartjQuery的3.1.0.min工作。它不支持jQuery的1.11.1.min

只需使用jQuery的3.1.0.min如jQuery的版本,它会工作。

谢谢

相关问题