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顯示特定的表單細節?