我在 mvc4 中实现了一个 jstree,但是当我运行我的应用程序时,没有显示树视图。我尝试使用 Firebug 跟踪错误并发现以下错误:
"TypeError: $(...).jstree is not a function $("#divtree").jstree();"
我在 mvc4 中实现了一个 jstree,但是当我运行我的应用程序时,没有显示树视图。我尝试使用 Firebug 跟踪错误并发现以下错误:
"TypeError: $(...).jstree is not a function $("#divtree").jstree();"
按照https://github.com/vakata/jstree上的指南进行操作
<script src="/path/to/jstree.min.js"></script>
<script>
jQuery(function($) {
("#divtree").jstree();
});
</script>