日期:2014-05-20 浏览次数:21040 次
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);
});
}