有没有办法在另一个页面上检索隐藏的输入值?

Is there a way to retrieve hidden input values on another page?

我正在尝试获取客户选择的输入,并将它们添加到隐藏字段,然后能够在购物车页面上显示它们。

<form method="post" action="https://omgneonsigns.com/cart/?add-to-cart=5825" name="contentForm" runat="server">

这是我的表单代码,当然我的字段设置是这样的:

<input type="hidden" id="hiddenText" name="hiddenText" value="">

那么,下一步是什么?我能够将这些值提醒给我,所以我知道它们正在 held/stored... 但我不确定如何将它们带到下一页并在那里提醒他们?

首先,您需要select隐藏输入。 JavaScript方式:

<input type="hidden" id="hiddenText" name="hiddenText" value="" onchange="myFunction(this.value)">

<script>
    function myFunction(val) {
        let hidden_val = val 
        // now store it using `session`
    }
</script>

基本上你可以通过多种方式做到这一点:

  1. 使用 JavaScript 会话。 link: https://www.w3schools.com/jsref/prop_win_sessionstorage.asp
  2. 使用 php 会话。 link: https://www.w3schools.com/php/php_sessions.asp

然后从session获取下一页的值。