在单个cookie中存储3个输入值并在子页面中使用它

时间:2016-09-25 19:32:07

标签: javascript html

在单个cookie中存储多个输入   我的购物车

        

20000 usd

                              

  

            <p>30000 usd</p>

<form name="woman1">
    <input type="number" min="0" style="width:80px;" name="woman2"/>
    <input type="submit" value="Add To Cart" onclick="add_to_cart()"/>
</form>

                   

10000 usd

<form name="baby1" >
    <input type="number" min="0" style="width:80px;" name="baby2"/>
    <input type="submit" value="Add To Cart" onclick="add_to_cart();"/>
</form>

1 个答案:

答案 0 :(得分:0)

如果您尝试在Cookie中存储信息,请使用Javascript或PHP。

在Javascript中,你通过这样做来制作一个cookie:

 document.cookie = "var_name=value; expires=Tells when the cookie should expire";

在PHP中它将是:

 setcookie($cookie_name, $cookie_value, when_to_expire); 

注意:过期是可选的。 此外,setcookie函数需要放在任何HTML之前。