easyui。。。在左侧树中单击一个子节点在右边tab中显示一个jsp页面 60
$(document).ready(function(){vartreeData=[{text:"人员管理",children:[{text:"员工信息",attribu...
$(document).ready(function(){
var treeData = [{
text : "人员管理",
children : [{
text : "员工信息",
attributes : {
url:"/PAMS/jsp/EmyInfo.jsp",
}
}
js要怎么写才能能实现。。。我这样写没反应,,,那该怎么写??? 展开
var treeData = [{
text : "人员管理",
children : [{
text : "员工信息",
attributes : {
url:"/PAMS/jsp/EmyInfo.jsp",
}
}
js要怎么写才能能实现。。。我这样写没反应,,,那该怎么写??? 展开
1个回答
展开全部
function addTab(title,path){
funcTab.tabs('add',{
title: title,
fit:true,
href:'${ctx}/login/forword!forwardFramePage.action?_f_url='+path,
iconCls:'icon-save',
closable:true
});
}
$(function(){
menuObj=$('#menu').tree({
url:'${ctx}/pm/user/user!displayAccessedModulesByUser.action',
animate:true,
onClick:function(node){
//alert(node.isLeaf);
var attributes = node.attributes;
if(attributes.isLeaf=="1"){
if(!isExistTab(node.text)){
//alert(attributes.path);
var url = "${ctx}"+attributes.path;
//alert(url);
addTab(node.text,url);
}else{
selectedTab(node.text);
}
}else{
}
},
onDblClick:function(node){
var attributes = node.attributes;
if(attributes.isLeaf=="0"){
$(this).tree('expand',node.target);
}
}
});
});
这个是我以前的测试,给你参考。
funcTab.tabs('add',{
title: title,
fit:true,
href:'${ctx}/login/forword!forwardFramePage.action?_f_url='+path,
iconCls:'icon-save',
closable:true
});
}
$(function(){
menuObj=$('#menu').tree({
url:'${ctx}/pm/user/user!displayAccessedModulesByUser.action',
animate:true,
onClick:function(node){
//alert(node.isLeaf);
var attributes = node.attributes;
if(attributes.isLeaf=="1"){
if(!isExistTab(node.text)){
//alert(attributes.path);
var url = "${ctx}"+attributes.path;
//alert(url);
addTab(node.text,url);
}else{
selectedTab(node.text);
}
}else{
}
},
onDblClick:function(node){
var attributes = node.attributes;
if(attributes.isLeaf=="0"){
$(this).tree('expand',node.target);
}
}
});
});
这个是我以前的测试,给你参考。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询