jquery ajax 传递参数

functiona(other){varshow=1;varpage=1;$.ajax({url:url,type:"post",dataType:"json",data... function a(other){
var show=1;

var page=1;

$.ajax({
url:url,

type:"post",

dataType:"json",

data:{show:show,page:page}//这里other传递的参数怎么添加进来?

});
}
function test(){
a("a:1,b:2");

}
求解。。谢谢。
展开
 我来答
魏蕤
推荐于2016-03-02 · TA获得超过426个赞
知道小有建树答主
回答量:231
采纳率:0%
帮助的人:241万
展开全部

楼主修改一下传参的方式就可以了,试着这样修改

function a(other){
    var show=1;

    var page=1;

    $.ajax({
        url:url,

        type:"post",

        dataType:"json",

        data:$.extend({show:show,page:page},other)
    });
}
test({a:1,b:2});//字符串修改成对象传入
酱了个油了个去
2013-07-18 · TA获得超过474个赞
知道小有建树答主
回答量:412
采纳率:100%
帮助的人:71.5万
展开全部
type:"POST",
url:url,
data:{'other':other},
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lkstarsea
2013-07-18 · TA获得超过315个赞
知道小有建树答主
回答量:201
采纳率:100%
帮助的人:187万
展开全部
function a(other){
var show=1;

var page=1;

$.ajax({
url:url,

type:"post",

dataType:"json",

data:{show:show,page:page,other:other}//这样

});
}
function test(){
a("a:1,b:2");

}
追问
我是想添加后是这样
{show:show,page:page,a:1,b:2}

这样后台 request .getParameter("a") 取到1

other:other 这样应该是 request .getParameter("other") 取到的是a:1,b:2 字符串吧。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式