Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How JavaScript data is transmitted on different pages

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces how JavaScript data is transmitted on different pages. The content is very detailed. Interested friends can use it for reference. I hope it will be helpful to you.

In web pages, we often encounter this situation, when we enter information on one page, we will jump to another page, and will pass the information we entered to another page, how to do it?

Today, let's do some practical work. For example, now there are two pages, and when we enter user information on one page, we jump to the other page and display, xx Welcome login interface.

Let's take a look at the design ideas:

The first login page with a submission form, which is submitted by action to the index.html page

For the second page, you can use the parameters of the first page to achieve the effect of transferring data between different pages.

The reason why the second page can use the data of the first page is that it uses the location.search parameter in URL.

On the second page, you need to extract this parameter.

The first step is to use substr to remove it.

The second step uses split ('=') to split keys and values

The first array is the key and the second array is the value.

The implementation code is:

User name: welcome to login! Var span = document.querySelector ('span'); / / get the span tag var myName = location.search.substr (1); / / get the parameter var arr = myName.split (' =') entered on the previous page; / / use the = sign division key and the value span [XSS _ clean] = arr [1] +''/ / to pass the data into span

The running effect is as follows:

About how the transmission of JavaScript data on different pages is shared here, I hope the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report