我可以使用 ajax 调用将我的数据发送到多个页面吗?我不想为此使用另一个 ajax 调用。
示例代码:
$.ajax({
type: 'POST',
url: '../services/form_data.php', //can I send data to multiple url with same ajax call.
data: {
answer_service: answer,
expertise_service: expertise,
email_service: email,
},
success: function (data) {
$(".error_msg").text(data);
}
});