On web pages, we often encounter this situation: when we enter information on a certain page, it will jump to another page and pass the information we entered to another page. How do we do it? Let’s take a look at the design ideas first:
The implementation code is: <body> <form action="index.html"> Username: <input type="text" name = 'uname'> <input type="submit" value="Submit"> </form> </body> <body> <div><span style="font-weight:700; color:blue"></span>Welcome to log in! </div> <script> var span = document.querySelector('span'); //Get the span tag var myName = location.search.substr(1); //Get the parameter entered on the previous page var arr = myName.split('='); //Use the = sign to split the key and value span.innerHTML = arr[1] + '' //Pass the data into span </script> </body> The running effect is: This concludes this article on the transmission of JavaScript data on different pages (URL parameter acquisition). For more information on the transmission of JavaScript data on different pages, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: MySQL database transaction example tutorial
>>: About input file control and beautification
I recently started learning Linux. After reading ...
Method 1: Submit via the submit button <!DOCTY...
Table of contents 1. Instructions for use 2. Prep...
for loop The for loop loops through the elements ...
Strictly speaking, nginx does not have a health c...
Since the entire application needs to be deployed...
1.1 Copy the nginx installation package and insta...
1. Delete folders Example: rm -rf /usr/java The /...
A website uses a lot of HTML5 and CSS3, hoping th...
Deploy the project to the project site test envir...
Table of contents Identifier length limit Length ...
CSS naming conventions (rules) Commonly used CSS ...
Recently, we received a request for help from a c...
This article shares the specific code of JS to ac...
principle Set a shadow on the element when hoveri...