我想将数组作为 Ajax 请求发送:
info[0] = 'hi'; info[1] = 'hello'; $.ajax({ type: "POST", url: "index.php", success: function(msg){ $('.answer').html(msg); } });
我怎样才能做到这一点?
info = []; info[0] = ‘hi’; info[1] = ‘hello’;
$.ajax({ type: "POST", data: {info:info}, url: "index.php", success: function(msg){ $('.answer').html(msg); } });