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

MySql fuzzy query json keyword retrieval solution example

Table of contents Preface Option 1: Option 2: Opt...

MySQL explain obtains query instruction information principle and example

explain is used to obtain query execution plan in...

Solve the problem of docker's tls (ssl) certificate expiration

Problem phenomenon: [root@localhost ~]# docker im...

JS generates unique ID methods: UUID and NanoID

Table of contents 1. Why NanoID is replacing UUID...

Detailed example of jQuery's chain programming style

The implementation principle of chain programming...

Implementation of Docker cross-host network (manual)

1. Introduction to Macvlan Before the emergence o...

Vue+element+oss realizes front-end fragment upload and breakpoint resume

Pure front-end implementation:切片上傳斷點續傳.斷點續傳needs ...

Detailed explanation of Object.create instance usage in js

1. Create a new object using the Object.create() ...

Solution to the problem of saving format in HTML TextArea

The format of textarea can be saved to the databas...

How to use Nexus to add jar packages to private servers

Why do we need to build a nexus private server? T...

How to implement remote access control in Centos 7.4

1. SSH remote management SSH is a secure channel ...

MySQL statement execution order and writing order example analysis

The complete syntax of the select statement is: S...

Specific use of CSS front-end page rendering optimization attribute will-change

Preface When scroll events such as scroll and res...

Vue implements verification whether the username is available

This article example shares the specific code of ...