首页 > 其他 > 详细

dtree的下载与使用

时间:2015-02-06 09:30:42      阅读:324      评论:0      收藏:0      [点我收藏+]

dtree是一个由JavaScript编写成的树形菜单组件,免费并且开源。

dtree有以下优点:
- Unlimited number of levels(无限分级)
- Can be used with or without frames(可用于框架或非框架页面)
- Remembers the state of the tree between pages(在不同页面之间可记住当前状态)
- Possible to have as many trees as you like on a page(可以得到你想要数量的树型)
- All major browsers suported(支持的浏览器)
Internet Explorer 5+ Netscape 6+ Opera 7+ Mozilla
- Generates XHTML 1.0 strict validated output(严格支持XHTML 1.0)
- Alternative images for each node(每个节点用图片代替)


dtree的下载地址:

http://www.destroydrop.com/javascripts/tree/


下载dtree.zip,解压目录如下:

技术分享


img文件夹: 包含树形菜单显示需要的图标
api.html : dtree帮助文档
dtree.css: 树形菜单的样式
dtree.js : js代码都在其中
example01.html:树形菜单实例

需要引用文件的文件

    <link rel="StyleSheet" href="dtree.css" type="text/css" />
    <script type="text/javascript" src="dtree.js"></script>


使用示例如下:

<div class="dtree">

    <p><a href="javascript: d.openAll();">open all</a> | <a href="javascript: d.closeAll();">close all</a></p>

    <script type="text/javascript">
        <!--

        d = new dTree(‘d‘);

        d.add(0,-1,‘My example tree‘);
        d.add(1,0,‘Node 1‘,‘example01.html‘);
        d.add(2,0,‘Node 2‘,‘example01.html‘);
        d.add(3,1,‘Node 1.1‘,‘example01.html‘);
        d.add(4,0,‘Node 3‘,‘example01.html‘);
        d.add(5,3,‘Node 1.1.1‘,‘example01.html‘);
        d.add(6,5,‘Node 1.1.1.1‘,‘example01.html‘);
        d.add(7,0,‘Node 4‘,‘example01.html‘);
        d.add(8,1,‘Node 1.2‘,‘example01.html‘);
        d.add(9,0,‘My Pictures‘,‘example01.html‘,‘Pictures I\‘ve taken over the years‘,‘‘,‘‘,‘img/imgfolder.gif‘);
        d.add(10,9,‘The trip to Iceland‘,‘example01.html‘,‘Pictures of Gullfoss and Geysir‘);
        d.add(11,9,‘Mom\‘s birthday‘,‘example01.html‘);
        d.add(12,0,‘Recycle Bin‘,‘example01.html‘,‘‘,‘‘,‘img/trash.gif‘);

        document.write(d);

        //-->
    </script>

</div>


运行效果如下:

技术分享

dtree的下载与使用

原文:http://blog.csdn.net/lhl6688/article/details/43559801

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!