我有两个HTML页面:index.html和confirmation.html。
在index.html中,有一个表单:
<form>
<label id="labelforename">Forename</label>
<input type="text" name="textforename">
<label id="labelsurname">Surname</label>
<input type="text" name="textsurname">
<input type="button" onclick="myFunction()"></input>
<script>
function myfunction(){
setTimeout(function() {window.location = "confirmation.html" });
}
</script>
</form>
在confirmation.html中有一个页面,其目的是确认输入的名字和姓氏。
<body>
<div id="write"><p>Your name is: </p></div>
<script>
function show() {
document.getElementById("write").innerHTML = textforename;
document.getElementById("write").innerHTML = textsurname;
}
</script>
</body>
如何通过2页传递姓名并在确认页面上显示?
是否通过将forename和surname存储在index.html上的cookie中,然后在确认页面上再次显示并显示它来完成?
这需要在jQuery或纯JavaScript中完成。