我想将两个值(参数)从一个 html 传递到另一个 html,而不显示 url 中的值(即与 post 方法相同)。如何使用 javascript 或 ajax 或 jquery 获取第二个 html 中的值。
例子 :
客户端.html
<html>
<body>
<form id="Form1" action="http://xyz/plus/server.html" method="post">
<table width="40%">
<tr><td>Country:</td><td><input type="text" name="country" id="country" /> </td></tr>
<tr><td>Language:</td><td><input type="text" name="lang" id="lang" /></td></tr>
<tr><td align="center"><input type="submit" /></td></tr>
</table>
</form>
</body>
</html>
服务器.html
<script>?? </script>
如何使用 javascript 或 ajax 或 jquery 在 server.html 文件中获取数据。请帮助我....在此先感谢