将来自多种形式的多种输入的数据存储在cookie中

时间:2018-10-29 09:33:24

标签: javascript html cookies

1.html的内容:

<body>
    <form>
        <input type="text" id="in1" class="in" readonly value="Armin" name = in1>
        <input type="text" id="in2" class="in" readonly value="Rmin" name = in2>
        <button type="button" onclick="">Submit</button>
    </form>
    <br/>
    <hr/>
    <br/>
    <form>
        <input type="text" id="in3" class="in" readonly value="abas" name = in3>
        <input type="text" id="in4" class="in" readonly value="mamad" name = in4>
        <button type="button" onclick="">Submit</button>
    </form>

    <script src="js1.js"></script>
</body>


我想要一个函数,当我单击每个表单的按钮末端时,它将来自每个表单输入的值存储到数组中,然后将该数组存储在cookie中。我的意思是,例如,当我单击第一个表单按钮时,此表单输入的值存储在数组中,然后存储在cookie中;如果单击第二个表单按钮,则此表单的值存储在相同的数组和cookie中第一种形式的值是。
可能吗?如果没有,我该怎么办呢?

0 个答案:

没有答案