前端之家收集整理的这篇文章主要介绍了
dojo的树状结构展示,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<html> <head> <
Meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <!--导入皮肤--> <style type="text/css"> @import "Libs/dojo/dijit/themes/tundra/tundra.css"; </style> <!--导入js
文件--> <script type="text/javascript" src="Libs/dojo/dojo/dojo.js" djConfig="isDebug: false,par
SEOnLoad: true"></script> <script type="text/javascript"> <!-- //导入 树列表 的
支持包 dojo.require("dijit.Tree"); //导入 将json格式数据格式化为tree认识的格式 的
支持包,这也是 dojo 其他控件依赖的数据格式 dojo.require("dojo.data.ItemFileReadStore"); //--> </script> </head> <body class="tundra"> <div dojoType="dojo.data.ItemFileReadStore" url="data_1.txt" jsid="aaa"></div> <div dojoType="dijit.Tree" store="aaa" labelAttr="name" label="地理列表"></div> </body> </html>
原文链接:https://www.f2er.com/dojo/291216.html