为了账号安全,请及时绑定邮箱和手机立即绑定

jquery ajax 传递参数?

jquery ajax 传递参数?

一只斗牛犬 2019-02-03 10:06:47
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");}
查看完整描述

3 回答

?
繁星淼淼

TA贡献1775条经验 获得超11个赞

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

12345678910111213141516function 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});//字符串修改成对象传入


查看完整回答
反对 回复 2019-03-19
?
哈士奇WWW

TA贡献1799条经验 获得超6个赞

type:"POST",
url:url,
data:{'other':other},

查看完整回答
反对 回复 2019-03-19
?
郎朗坤

TA贡献1921条经验 获得超9个赞

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");

}



查看完整回答
反对 回复 2019-03-19
  • 3 回答
  • 0 关注
  • 798 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信