当前位置: 代码迷 >> JavaScript >> EasyUI的panel局部刷新有关问题
  详细解决方案

EasyUI的panel局部刷新有关问题

热度:262   发布时间:2013-08-27 10:20:47.0
EasyUI的panel局部刷新问题
首先我的页面布局,左边是List循环出来的可伸缩面板,然后每个面板里内容是循环下来的子项

我在右边添加了一个子项,然后需要左边面板实现刷新
var pp = window.parent.$('#tttt').accordion('getSelected'); 
if (pp){   
    pp.panel('refresh',URL);
}  


但是我不知道哪个URL指定什么,如果我指定了页面,那么他刷新后面板里却是整个页面



请问我该怎么指定哪个URL
另外我如果不指定哪个URL他不会刷新

------解决方案--------------------
用url返回的内容替换展开的panel的内容。。

refresh
param:href
Refresh the panel to load remote data. If the 'href' parameter is assigned, it will override the old 'href' property.

Code example:

// open a panel and then refresh its contents.
$('#pp').panel('open').panel('refresh');
// refresh contents with a new URL.
$('#pp').panel('open').panel('refresh','new_content.php');