jquery页面加载问题....在线等待
------------------------>index.jsp
<div data-options="region:'west',title:'管理系统练习左侧列表',split:true" href="left.jsp" style="width: 230px;">
</div>
<div data-options="region:'center',title:'管理系统练习中间主界面'" id="zhrefId" href="CenterPage.jsp" style="background: #eee; overflow: hidden;">
</div>
--------------------------->left.jsp
在left.jsp页面中,我想点击左侧菜单将index.jsp中的CenterPage.jsp换掉,然后重新加载index.jsp页面,显示必须是我点击换掉后的页面,应该怎么做或者谁有更好的方案解决
$("#adubytreeStrengthen").AdubyTree({
dataType:"json",
checkboxes:true,
data:jsondata,
treeType:"strengthen",
onClick:function(node){
//alert(node.id);
$('#zhrefId').attr('href','node-0.jsp');
$("#zhrefId").load("index.jsp");
}
});
------解决方案--------------------你每次 把你新的 URL地址传送 load 方法 然后渲染在 你指定的DIV 或者内容块就可以了啊,没太明白 你单独要替换是什么意思
------解决方案--------------------果断的iframe
------解决方案--------------------iframe.