Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在网页上,我有一个按钮,可以向与我没有任何关系的服务器发送 POST。当有人单击该按钮时,我需要更新我的(另一台)服务器上的一些数据,以便当用户最终被重定向回来时,将显示正确的信息。这是AJAX可以做到的吗?
非常感谢,TA
当然。
使用 Jquery,它将是这样的:
var url1 = $.post("url1", {...}); var url2 = $.post("url2", {...}); $.when(url1, url2).then(function() { // Action when the two posts are back });
如果另一个网址不重要,您也可以只对其中一个网址采取行动。