zoukankan      html  css  js  c++  java
  • easyui-combotree个人实例

    <%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%
    String path = request.getContextPath();
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    <link rel="stylesheet" type="text/css"
    href="<%=path%>/easyui/themes/default/easyui.css">
    <link rel="stylesheet" type="text/css"
    href="<%=path%>/easyui/themes/icon.css">
    <link rel="stylesheet" type="text/css" href="<%=path%>/easyui/demo.css">
    <script type="text/javascript"
    src="<%=path%>/easyui/jquery-1.7.2.min.js"></script>
    <script type="text/javascript"
    src="<%=path%>/easyui/jquery.easyui.min.js"></script>
    <script type="text/javascript">
    $(function(){
    $("#t1").combotree({
    url:'/egoTest/tree/loadTree.do',
    300,
    checkbox:true,
    multiple:true

    });

    $("#btn1").click(function(){
    console.info($("#t1").combotree('getValue'));
    });

    $("#btn2").click(function(){
    var tree = $("#t1").combotree('tree');
    var root = tree.tree('getRoot');
    console.info(root);
    });
    });
    </script>
    <title>Insert title here</title>
    </head>
    <body>
    <input id="t1"/>
    <a id="btn1" class="easyui-linkbutton">获取tree选中的值</a>
    <a id="btn2" class="easyui-linkbutton">获取tree对象</a>
    </body>
    </html>

  • 相关阅读:
    2017加油
    配置SSH框架的心得
    .net 中select和where的区别
    oracle查询中文数据出现乱码
    three.js 加载 obj模型
    下载别人的3D模型文件
    关闭按钮
    桌面截屏保存成gif形式(软件)
    vue 中引入 three.js
    three.js-地球贴图-TextureLoader
  • 原文地址:https://www.cnblogs.com/cxxjohnson/p/4888865.html
Copyright © 2011-2022 走看看