8

我在 mvc4 中实现了一个 jstree,但是当我运行我的应用程序时,没有显示树视图。我尝试使用 Firebug 跟踪错误并发现以下错误:

"TypeError: $(...).jstree is not a function $("#divtree").jstree();"
4

1 回答 1

6

按照https://github.com/vakata/jstree上的指南进行操作

<script src="/path/to/jstree.min.js"></script>
<script>
    jQuery(function($) {
         ("#divtree").jstree();
    });
</script>
于 2013-04-04T13:35:23.900 回答