首页 > Js/Jquery

jstree生成树并为树添加触发事件

发表于2015-08-11 11:08:51| --次阅读| 来源webkfa| 作者js,javascript

摘要:本章将介绍如何简单的使用jstree生成树(生成树的数据是静态的),并为树添加点击事件。1. 建一个jsp页面,引入jquery.js(在其他js前引用),引入jstree所需的js,css文件(可从官网找)。2. 在页面添加一个div,用来在页面展示树菜单。 3. 在页面写js (js必须写在页面...

本章将介绍如何简单的使用jstree生成树(生成树的数据是静态的),并为树添加点击事件。

 1. 建一个jsp页面,引入jquery.js(在其他js前引用),引入jstree所需的js,css文件(可从官网找)。

 2. 在页面添加一个div,用来在页面展示树菜单。  

 3. 在页面写js (js必须写在页面最后)。

 页面代码如下:

<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!DOCTYPE html>
<html>
<head>
<script src="${ctx}/common/jquery-1.9.1/jquery-1.9.1.js"></script>
<script src="${ctx}/common/dist/jstree.min.js"></script>
<link  href="${ctx}/common/dist/themes/default/style.min.css" rel="stylesheet" />
</head>
<body>
<div id='tree1'></div>
<script>
        //菜单数据
        var data=[{"id":"1","parent":"#","text":"top1"},{"id":"2","parent":"#","text":"top2"},{ "id" : "3", "parent" : "2", "text" : "Child 1"}];
        //调取tree方法
        tree(data);
        function tree(data) {
            // var data=eval('(' + data + ')');  //把json字符串转为json对象
             // for(var o in data){               //js遍历json对象
             //    alert("id:"+data[o].id+" test:"+data[o].text );  
             // } 
            //树形菜单
            $('#tree1')
                .on("changed.jstree", function(e, data) {
                 if (data.selected.length) {alert( data.instance.get_node(data.selected[0]).text);} //输出点击的内容
                })  //触发事件
                .jstree({'core' : {'data' : data}}); //动态生成tree菜单
        }
    </script>
</body>
</html>

 

相关文章

猜你喜欢

学到老在线代码浏览器 关闭浏览
友情链接: hao123 360导航 搜狗网址导航 114啦网址导航 博客大全
Copyright © 1999-2014, WEBKFA.COM, All Rights Reserved  京ICP备14034497号-1