一、主頁node
<div id="cc" class="easyui-layout" style="width:600px;height:700px;" fit="true">
<div region="west" split="true" title="" style="width:250px;">
<iframe width="100%;" height="100%;" id="left" name="left" frameborder="0" scrolling="no" src="a.jsp"></iframe>
</div> jsp
<div region="center" border="false" >
<iframe width="100%;" height="100%;" id="right" name="right" frameborder="0" scrolling="auto" src="b.jsp"></iframe>
</div>
</div>ui
二、a.jsp事件
<div class="easyui-panel" style="padding:5px">
<ul id="tt" class="easyui-tree" >
<!--加載樹,樹的單擊事件-->
</ul>
</div>get
三、b.jspiframe
<table id="dg" class="easyui-datagrid" title="" style="width:100%;height:250px"
data-options="rownumbers:true,singleSelect:false,checkOnSelect:false">it
</table>io
四、a.jsp的onclick事件table
var node = $('#tt').tree('getSelected');
var data=訪問後臺得到數據
//parent.frames["right"]:獲取到兄弟(right)頁面
parent.frames["right"].$('#dg').datagrid('loadData',data);class