我正在使用jQuery EasyUI来创建checkbox tree。我尝试了他们的演示,它在当地很有效。当我在服务器上尝试它时,我没有看到树列表。
我包含了必要的js文件: - jquery-1.6.1.min.js - jquery.easyui.min.js
这是html:
<ul id="tt" class="easyui-tree"
url="data/tree_data.json"
checkbox="true">
</ul>
这是JSON数据:
[{
"id":1,
"text":"Fruits",
"state":"closed",
"children":[{
"text":"Apple"
},{
"text":"Pear"
}]
}]
如何在页面上加载json数据?
提前致谢
答案 0 :(得分:0)
data = $.parseJSON(var);
alert(data.id);
其中var包含你的json数据。