zoukankan      html  css  js  c++  java
  • Easyui使用记录

    一天就这搞了这几行。

    1. if else 可以嵌套;

    2. 子页面调用父页面js,需要使用top.父页面js的方法。

    <script type="text/javascript">
    $(document).ready(function() {
    $('#tt').tree( {
    onlyLeafCheck : true, 
    onCheck : function(node, checked) {
    if (node.text == '天地图影像') {
    if (checked) {
    top.setLayerAction("EarthTDTYX_1", true);
    } else {
    top.setLayerAction("EarthTDTYX_1", false);
    }
    } else if (node.text == '天地图注记') {
    if (checked) {
    top.setLayerAction("EarthTDTZHJ_1", true);
    } else {
    top.setLayerAction("EarthTDTZHJ_1", false);
    }
    } 
    }
    });
    });
    </script>
    

      

        <body>
            <div class="easyui-panel" style="padding: 5px">
                <ul id="tt" class="easyui-tree"
                    data-options="url:'util/easyUI/tree_data.json',method:'get',animate:true,checkbox:true"></ul>
            </div>
    
    
        </body>
  • 相关阅读:
    CODEFORCES 429B 动态规划
    HDU 2084(DP)
    最大公约数算法(待续)
    spring---aop 配置
    代理模式
    spring--学习之IOC DI
    spring--基本介绍
    JAVASE 面试总结(1)
    工厂模式
    建造者模式
  • 原文地址:https://www.cnblogs.com/ys-wuhan/p/5885932.html
Copyright © 2011-2022 走看看