我試圖做一個重定向插件jquery。它應該重定向兩次,首先是「感謝您購買,您現在將被重定向」,然後轉到您實際購買的外部頁面。獲取item_id與jquery發佈到外部頁面
當我重定向時,一切正常,但我無法獲取im發佈的產品的item_id或金額。是一個wordpress頁面,im發佈產品以顯示在實際購買的外部頁面中。 這是我的代碼,它會在您點擊「繼續」按鈕後將您重定向到「/ success」頁面,在成功頁面顯示後,它會顯示消息5秒鐘,然後它必須將您重定向到實際購買頁面:
function addToListAndRedirect(item_id){
var email = jQuery("[name='your-email']").val();
var amount = jQuery("[name='vinbrevet-contact-amount']").val();
var subscription = {
ListIds: [
"beeb2f48-5265-443e-960f-4f995d8c2942"
],
ConfirmationIssue: { IssueId: "cd081857-4f30-4da1-ab5c-a7883f62d99c" },
Contact: {
Email: email
}
}
window.location.href = "http://vinbrevet.se/success?items="+ item_id + ":" + amount; }
的代碼/成功頁面:
function redirectToExternal(item_id, amount) {
var item_id;
var amount = jQuery("[name='vinbrevet-contact-amount']").val();;
jQuery.post("http://ui.admlo.se/Api/Subscriptions/c03a4119-f6a8-4d86-b34f-f16177ec7912").always(function() {
window.location.replace("https://www.systembolaget.se/dryckeslista?items=" + item_id+":" + amount);
});
}
setTimeout("redirectToExternal()", 5000);
我所知,這應該是一個更好的辦法......但在iis有可能得到從瀏覽器欄ITEM_ID和數量?或者我應該如何在第一次重定向後獲取item_id和金額?在頁面/成功我可以顯示item_id和金額,但在第二次重定向我得到undefined:undefined。
URL例如:
http://vinbrevet.se/success/?items=7487101:1(成功頁)。
https://www.systembolaget.se/delat?items=undefined:undefined(後成功頁面重定向)
可能重複[如何從GET參數獲取值?](https://stackoverflow.com/questions/979975/how-to-get-the -value-from-the-the-get-parameters) – CBroe
我現在登入:) –