首页 > 代码库 > Easyui使用记录
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>
Easyui使用记录
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。