jquery ajax方法在ie中有问题
利用jquery的ajax方法,与后台的action方法进行关联,具体方法为
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);
}
});