jquery的跳转.禁止全url跳转.只需控制器+方法
success:function(){
window.location.href="/enterprise/show";
}
success:function(){
window.location.href="http://www.xxx.com/enterprise/show"; //错误.无法跳转,分布式也无法跳转
}
success:function(){
window.location.href="/enterprise/show";
}
success:function(){
window.location.href="http://www.xxx.com/enterprise/show"; //错误.无法跳转,分布式也无法跳转
}