我正在使用 Jstree 在我的 MVC3 项目中生成树结构。
它在加载时工作正常,但是当发生回发/提交时,树将不会呈现。它以“正常”的 Ul/li 方式简单地显示列表。
据我所知,Jstree normalle 附加到 Ul/Li 的类在回发后没有附加。
我的 Jquery 是这样的.. 非常基本
jQuery(document).ready(function($) {
$("#testTree").bind("loaded.jstree", function(event, data) {
}).jstree({
themes: {
theme: "default",
dots: false,
icons: false
},
core: {
animation: 200,
open_parents: false
},
cookies: {
cookie_options: {
path: '/'
}
},
plugins: ["themes", "html_data", "cookies"]
});
});
似乎只有当我在页面上有 jquery.mobile 1.2 (http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js") 时才会出现问题。如果我删除这一切正常。
任何输入将不胜感激