如何在服务器上保存数据供以后使用?

时间:2015-04-05 16:52:31

标签: javascript html

我已经创建了基本计算程序,我必须保存用户'以前的答案。它是javascript中的简单加法公式。当同一个人长时间回来后,它也必须显示相同的答案。这意味着我想在我的服务器上为该特定的人保存答案。如何存储所有这些数据,并在需要时再次访问它?

<html>
    <head>
        <style>
        </style>
        <script type="text/javascript">
            function calculate() {
                a = document.getElementById('num1').value;
                b = document.getElementById('num2').value;
                document.getElementById('result').innerHTML = Number(a) + Number(b);
            }
        </script>
    </head>
    <body>
        <input id='num1' value="1"/>
        <input id='num2' value='3'/>
        <p id='result'></p>
        <button onclick="calculate()">Calculate</button>
    </body>
</html>

在上面的示例中,我想保存用户&#39;我的服务器上的名称和答案。我该怎么做?

1 个答案:

答案 0 :(得分:0)

有几种方法可以做到这一点。

您可以使用表单通过get或post方法将数据发送到php或java。

您可以通过cookie将它们存储在客户端,但客户端可以随时删除它们。

如果您不想刷新页面,也可以使用ajax。