Two ways to prohibit clearing the input text input cache in html

Two ways to prohibit clearing the input text input cache in html

Most browsers will cache input values ​​by default, and only by using ctl+F5 to force refresh can the cache record be cleared.

If you don't want the browser to cache the input value, there are two ways:

Method 1:

Add to the input that you don't want to use cache

XML/HTML CodeCopy content to clipboard
  1. autocomplete = "off" ;eg:
  2. < input   type = "text"   autocomplete = "off"   name = "test"   />   

Method 2:

Add in the form tag where the input is located

XML/HTML CodeCopy content to clipboard
  1. autocomplete = "off" ;eg:
  2. < form   action = "#"   autocomplete = "off" >   
  3. < input   type = "text"   autocomplete = "off"   name = "test"   />   
  4. </ form >   

<<:  Steps to create a CentOS container through Docker

>>:  Pure CSS allows child elements to break through the width limit of parent elements

Recommend

Problems and solutions when installing MySQL8.0.13 on Win10 system

Operating system: Window10 MySQL version: 8.0.13-...

Some tips for using less in Vue projects

Table of contents Preface 1. Style penetration 1....

Vue implements file upload and download functions

This article example shares the specific code of ...

Example code for implementing a text marquee with CSS3

Background Here's what happened, Luzhu accide...

Solution to the root password login problem in MySQL 5.7

After I found that the previous article solved th...

Detailed explanation of Vue custom instructions and their use

Table of contents 1. What is a directive? Some co...

How MySQL handles implicit default values

Some students said that they encountered the prob...

vitrualBox+ubuntu16.04 install python3.6 latest tutorial and detailed steps

Because I need to use Ubuntu+Python 3.6 version t...

Detailed explanation of sql_mode mode example in MySQL

This article describes the sql_mode mode in MySQL...

CSS3 filter code to achieve gray or black mode on web pages

front end css3,filter can not only achieve the gr...

Summary of various forms of applying CSS styles in web pages

1. Inline style, placed in <body></body&g...

Detailed explanation of the usage of position attribute in HTML (four types)

The four property values ​​of position are: 1.rel...

A brief discussion on the implementation principle of Vue slot

Table of contents 1. Sample code 2. See the essen...