CSS style control to achieve IE submission form record history click return information is still there

CSS style control to achieve IE submission form record history click return information is still there
It is mainly a CSS style control and a META tag;

Copy code
The code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META NAME="save" CONTENT="history">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
input{
behavior:url(#default#savehistory);
}
textarea{
behavior:url(#default#savehistory);
}
</style>
<title> ex1 </title>
</head>
<body>
<input name=t1 type=text style="font-size:18">My information is still there

<input name=t2 type=text style="font-size:18">
<input type="radio" name="rd" value="1" />
<textarea name="tx" id="tx"></textarea>
<p>
<a href="http://www.baidu.com"> click here </a>
</p>
<body>
</html>

<<:  Intellij IDEA quick implementation of Docker image deployment method steps

>>:  Share 5 JS high-order functions

Recommend

Set IE8 to use IE7 style code

<meta http-equiv="x-ua-compatible" co...

React hooks introductory tutorial

State Hooks Examples: import { useState } from &#...

Detailed explanation of CSS style cascading rules

CSS style rule syntax style is the basic unit of ...

Why is it not recommended to use index as key in react?

1. Compare the old virtual DOM with the new virtu...

Detailed explanation of various HTTP return status codes

When a request is sent to your server to display ...

Mysql table creation foreign key error solution

Database Table A: CREATE TABLE task_desc_tab ( id...

React configuration px conversion rem method

Install related dependencies npm i lib-flexible -...

How to quickly build an FTP file service using FileZilla

In order to facilitate the storage and access of ...

js dynamically adds example code for a list of circled numbers

1. Add the ul tag in the body first <!-- Unord...

Solution to the MySQL server has gone away error

MySQL server has gone away issue in PHP 1. Backgr...

Example of creating circular scrolling progress bar animation using CSS3

theme Today I will teach you how to create a circ...

Implementing simple chat room dialogue based on websocket

This article shares the specific code for impleme...

MySQL Oracle and SQL Server paging query example analysis

Recently, I have done a simple study on the data ...