PHP-IE下$.ajax $post都取不到值呢?
$.ajax({
type: "POST",
url: "./index.php?m=Store&a=upSalenum",
data: {
sid: ary0,
sname:ary1,
tid: ary2,
tgna:ary3,
tnum:ary4,
tprice:ary5,
startp:ary6,
mprice:ary7
},
dataType: "json",
cache:!1,
contentType:"application/x-www-form-urlencoded",
success: function(n) {
if(n.stac){
layer.msg('添加购物车成功!', 1, -1);
cnum=1;
$('.cart_num').html(cnum);
$('.snull').hide();
$("#carBox .table_box .shopping_titlebar").removeClass('copened');
addmenu([ary0,ary1,ary2,ary3,ary4,ary5,ary6,ary7]);
$('.tonum').html(getTotalNum());
$('.toprice').html(getTotalPrice().toFixed(2));
}else{
}
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1、建议把获取到的data都打印出来看看
2、试试n[stac]取值