Is there possible to add multiple url's in ajax post method?
$.ajax({
type: 'POST',
url: root + "projects/partners?json",
data:{key:$(this).val()}
success: refreshMyModel,
dataType: "json"
});
上記のjsファイルの例では、1つではなく複数のURLを追加したいので、複数のURLの間に「、」を使用してこれは可能ですか?