我想在ajax调用的URL中通过GET方法传递多个参数,但它不能正常工作。感谢所有的帮助谢谢你
$.ajax({
type: "GET",
contentType: "text/xml",
dataType: 'json',
async:true,
cache: false,
headers:{ 'Access-Control-Allow-Origin': '*'},
iurl: "http://maps.googleapis.com/maps/api/distancematrix/xml?origins="+dest_lat+"&"+dest_lon+"|"+data[i][3]+"&"+data[i][4],
success: function(msg) {
alert(msg);
}
});