Solution to the problem of passing values ​​between html pages

Solution to the problem of passing values ​​between html pages
The first time I used the essay, I felt quite awkward
a.html

Copy code
The code is as follows:

<html>
<head>
<title>demo</title>
<meta name="Author" content="xugang" />
</head>
<body>
<FORM name="frm" METHOD="get" ACTION="b.html" onsubmit="return foo()">
<INPUT TYPE="hidden" id="hid" value="123" name="hid">
<INPUT TYPE="submit" value="Submit">
</FORM>
</body>
</html>

b.html

Copy code
The code is as follows:

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<BODY>
<SCRIPT LANGUAGE="JavaScript">
document.write(location+"
");
document.write(location.search+"
");
document.write(decodeURIComponent(location.search.substr(location.search.indexOf("=")+1)));
</SCRIPT>
</BODY>
</HTML>

<<:  CSS specification BEM CSS and OOCSS sample code detailed explanation

>>:  Detailed explanation of json file writing format

Recommend

Repair solution for inconsistent MySQL GTID master and slave

Table of contents Solution 1: Rebuild Replicas Pr...

Detailed explanation of Vue data proxy

Table of contents 1. What I am going to talk abou...

How to use Node.js to determine whether a png image has transparent pixels

background PNG images take up more storage space ...

Install MySQL (including utf8) using Docker on Windows/Mac

Table of contents 1. Docker installation on Mac 2...

Does the % in the newly created MySQL user include localhost?

Normal explanation % means any client can connect...

Pure CSS to implement iOS style open and close selection box function

1 Effect Demo address: https://www.albertyy.com/2...

HTML basic summary recommendation (text format)

HTML text formatting tags 標簽 描述 <b> 定義粗體文本 ...

Four practical tips for JavaScript string operations

Table of contents Preface 1. Split a string 2. JS...

A simple example of using Vue3 routing VueRouter4

routing vue-router4 keeps most of the API unchang...

Vue project implements file download progress bar function

There are two common ways to download files in da...

Docker builds jenkins+maven code building and deployment platform

Table of contents Docker Basic Concepts Docker in...

Solutions to problems using addRoutes in Vue projects

Table of contents Preface 1. 404 Page 1. Causes 2...

JS realizes simple picture carousel effect

This article shares the specific code of JS to ac...

Example of how to quickly build a LEMP environment with Docker

LEMP (Linux + Nginx + MySQL + PHP) is basically a...