I have two HTML pages: form.html and display.html. In form.html, there is a form:
<form action="display.html">
<input type="text" name="serialNumber" />
<input type="submit" value="Submit" />
</form>
The form data is sent to display.html. I want to display and use the form data serialNumber in display.html, as shown below:
<body>
<div id="write">
<p>The serial number is: </p>
</div>
<script>
function show() {
document.getElementById("write").innerHTML = serialNumber;
}
</script>
</body>
So how can I pass the serialNumber variable from form.html to display.html so that the above code in display.html will show the serial number and the JavaScript function show() gets the serialNumber from the first HTML?
If you have no option to use server-side programming, such as PHP, you could use the query string, or GET parameters.
In the form, add a
method="GET"attribute:When they submit this form, the user will be directed to an address which includes the
serialNumbervalue as a parameter. Something like:You should then be able to parse the query string – which will contain the
serialNumberparameter value – from JavaScript, using thewindow.location.searchvalue:See also JavaScript query string.
The alternative is to store the values in cookies when the form is submit and read them out of the cookies again once the
display.htmlpage loads.See also How to use JavaScript to fill a form on another page.