将数组传递给$ .ajax()中的ajax请求我想发送一个数组作为Ajax请求:info[0] = 'hi';info[1] = 'hello';$.ajax({
type: "POST",
url: "index.php",
success: function(msg){
$('.answer').html(msg);
}});我怎样才能做到这一点?
3 回答
慕容3067478
TA贡献1773条经验 获得超3个赞
info = [];
info[0] = 'hi';
info[1] = 'hello';
$.ajax({
type: "POST",
data: {info:info},
url: "index.php",
success: function(msg){
$('.answer').html(msg);
}
});
哔哔one
TA贡献1854条经验 获得超8个赞
只需使用JSON.stringify方法并将其作为$ .ajax函数的“data”参数传递,如下所示:
$.ajax({ type: "POST", url: "index.php", dataType: "json", data: JSON.stringify({ paramName: info }), success: function(msg){ $('.answer').html(msg); }});
您只需要确保在页面中包含JSON2.js文件...
- 3 回答
- 0 关注
- 767 浏览
添加回答
举报
0/150
提交
取消