2016-05-09 56 views
1

我將值存儲在localStorage中,並通過輸入[type:hidden]和input [type:text]來存儲值。 JS:使用id將localStorage值提取到其他頁面

$('.proceed_btn').on('click', function() { 
    // Blank to start with 

    var order = {}; 

    // Loop through all inputs... 
    $('input[type="text"], input[type="hidden"]').each(function() { 
    // ...adding their values as properties 
    order[this.name] = this.value; 
    }); 

    // Store that object in JSON format 
    localStorage.setItem("order", JSON.stringify(order)); 
}); 

我想,當用戶提交表單後轉到其他頁面打印這些值。我目前正在研究ruby。網站上有很多產品,因此彙總頁面中的信息會根據該信息進行渲染。有沒有什麼辦法通過ID顯示特定的表單細節?

回答

0

您可以創建一個局部與.js.erb擴展名,比如_order_partial.js.erb和檢索順序對象這樣的:

然後你就可以使部分在任何意見文件要使用它。

相關問題