在javascript中将数据从一个页面传递到另一个页面

时间:2016-11-01 11:07:03

标签: javascript html

我想使用POST方法在2个HTML页面之间传递值。我有很多数据要传递到第二页,不能使用GET。我的问题是我不知道如何将值传递给第二个HTML页面,如何在第2页上显示用户名。请解释!!!

这里是page1.html代码:

<html>
<head>
<title>Form</title>
</head>
<body>
<h4>Enter your name</h4>
<form name="form1" method="post" action="page2.html">
<input type="text" name="username">
<input type="submit" onclick="submitForm()">
</form>
<script type="text/javascript">
  function submitForm()  
   {
     form1.submit();
   }
</script>
</body>
</html>

这里是page2.html代码:

<html>
<head>
</head>
<body>
....... dont know how to display username entered on page1.html here...
</body>
</html>

1 个答案:

答案 0 :(得分:0)

试试这个

 <html>
 <head>
 </head>
  <body>

 <?php

   if(isset($_POST["username"]))
   {
    echo $_POST["username"];
    }

  ?>
</body>
</html>

如果您想使用javascript执行此操作,请阅读有关AJAX的信息

ajax Tutorial