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

js to implement file upload style details

Table of contents 1. Overview 2. Parameters for c...

Database SQL statement optimization

Why optimize: With the launch of the actual proje...

Vue3 list interface data display details

Table of contents 1. List interface display examp...

How to implement line breaks in textarea text input area

If you want to wrap the text in the textarea input...

Vue implements a search box with a magnifying glass

This article shares with you how to use Vue to im...

Basic usage knowledge points of mini programs (very comprehensive, recommended!)

Table of contents What to do when registering an ...

Example code for implementing anti-shake in Vue

Anti-shake: Prevent repeated clicks from triggeri...

Does MySql need to commit?

Whether MySQL needs to commit when performing ope...

How to detect file system integrity based on AIDE in Linux

1. AIDE AIDE (Advanced Intrusion Detection Enviro...

Summary of pitfalls encountered in installing mysql and mysqlclient on centos7

1. Add MySQL Yum repository MySQL official websit...

How to monitor Tomcat using LambdaProbe

Introduction: Lambda Probe (formerly known as Tom...

How to create a my.ini file in the MySQL 5.7.19 installation directory

In the previous article, I introduced the detaile...