将表单值传递到不同页面上的另一个表单而不使用url变量(javascript)

时间:2009-10-09 23:21:53

标签: javascript forms

我在页面上有一个表单,我希望将表单输入框值传递到另一个页面上另一个表单上的另一个输入框而不使用URL变量 - 这可能吗?

如果有任何帮助,它们都会共享相同的标题页部分。

由于

乔纳森

2 个答案:

答案 0 :(得分:3)

详细说明@BoltBait - 这是一个基本的例子,使用JQuery + cookie plugin

在第一页

<script type="text/javascript">
    // set the cookie, on click to the next page
    $("#next-page").click(function() {
        $.cookie("INPUTBOX",$("input[name=inputbox]").val());
    });
</script>

在下一页

<script type="text/javascript">
    // get the cookie, we are now on the next page
    alert($.cookie("INPUTBOX"));
</script>

希望这有帮助

答案 1 :(得分:0)

如果两个页面都在同一个Web服务器上,您可以使用cookie来完成。