使用jquery在两个html页面之间传递数据

时间:2015-10-23 17:19:02

标签: jquery html

如何使用jQuery在两个html页面之间传递变量?

的file1.html

<form>
  First name : <input type="text" id="firstname"/>
</form>

file2.html:

<p> <!--retrieve firstname here --> </p>

1 个答案:

答案 0 :(得分:0)

您可以使用localStorage:

// Store (on first page)
localStorage.setItem("firstname", "Smith");

// Retrieve (on second page)
var firstname = localStorage.getItem("firstname"); 

更多信息:http://www.w3schools.com/html/html5_webstorage.asp