0
大家好,我想知道是否可以這樣做? 首先我使用$.post
來發布數據到href。當完成後它會有數據(這沒有href),然後我想發送另一個數據,但我不知道它的href。 例如:
$.post("/link", {
"action" : "add_points_for_user",
"search_user" : "data",
"submit_search_user" :"Ok"
}, function(z) {
console.log(z);
// I want to send another data on it (use $.post) without using url
});
不,你不能發送一個POST請求而沒有一個URL來發送它,這是什麼意思? – adeneo
你爲什麼要這樣做 –
我只想當我發送一個post請求到一個/鏈接一個數據將顯示在那個數據我想再次使用post請求我該怎麼辦? –