当前位置: 代码迷 >> J2EE >> JQUERY POST()方法传参后台获取有关问题
  详细解决方案

JQUERY POST()方法传参后台获取有关问题

热度:92   发布时间:2016-04-22 02:05:23.0
JQUERY POST()方法传参后台获取问题
JScript code
function showMen(id ,branch,wherestation){                       var params = {"wherestation2":wherestation,"branch2":branch};                           // alert(params)          //document.write(params.wherestation2);             //document.write(params.branch2);         $.post("ajaxRequest.action",params,function(html){                //alert(html);                $("#men"+id).html(html);        });        }

这样在 ACTION 类里 怎么获得 params 传来的值

------解决方案--------------------
你可以定义两个同名属性试试
记得写上get/set方法
  相关解决方案