日期:2014-05-19 浏览次数:20744 次
nav.on("click",function(node,event){
var nodeid = node.id;
var nodeType = node.attributes.nodeType;
var detailUrl = "/organmanage.do?action=showDetail";
$.ajax({
url:sys.getContextPath() + detailUrl,
data:{'id':nodeid,'type':nodeType},
cache:false,
success:function(data){
//alert(data);
$("#detail").html(data);
}
});