日期:2014-05-16 浏览次数:20492 次
        $(function () {
            $("#demo1").jstree({
                "json_data": {
                    "data": [
                    {
                        //直接在这里拼接了一个json
                        "data": "A node", "metadata": { id: 23 },
                        "children": ["Child 1", "A Child2"]
                    },
                        { "attr": { "id": "li.node.id1" },
                            "data": { "title": "Long format demo", "attr": { "href": "#"}}
                        }]
                },
                "plugins": ["themes", "json_data", "ui"]
            }).bind("select_node.jstree", function (e, data) { alert(data.rslt.obj.data("id")); });
        });
    $(function () {
            $("#demo1").jstree({
                "json_data": {
                    "ajax": {
                        //通过ajax获取json
                        "url": "JstreeDo.aspx",
                        "data": function (n) {
                            return { id: n.attr ? n.attr("id") : 0 };
                        }
                    }
                },
                "plugins": ["themes", "json_data"]
            });
        });