How to disable IE10's password clear text display and quick clear function

How to disable IE10's password clear text display and quick clear function
IE10 provides a quick clear button (X icon) and a password text display button (small eye icon) for <input> and <input type="password"> respectively:

The quick clear button can replace a series of complex touch actions such as selecting all and deleting, while the password display button can help users confirm the input content, making up for the problems of slow touch typing and high error rate. However, based on the security of the Web system, this function needs to be disabled, especially the function of displaying passwords in plain text. This can be achieved by controlling the page view and CSS style.

1. First, add the following code to the HTML header of the web page to force IE browser not to use compatibility view:

Copy code
The code is as follows:

<meta http-equiv="X-UA-Compatible" content="edge" />

2. Disable the X and eye icons through CSS virtual elements (::-ms-clear, ::-ms-reveal). The specific code is as follows:

Copy code
The code is as follows:

input::-ms-clear{display:none;}
input[type="password"]::-ms-reveal{display:none;}

<<:  Implementing the preview function of multiple image uploads based on HTML

>>:  Pitfalls and solutions encountered in MySQL timestamp comparison query

Recommend

How to use Vuex's auxiliary functions

Table of contents mapState mapGetters mapMutation...

HTML form tag tutorial (5): text field tag

<br />This tag is used to create a multi-lin...

Detailed description of common events and methods of html text

Event Description onactivate: Fired when the objec...

The linkage method between menu and tab of vue+iview

Vue+iview menu and tab linkage I am currently dev...

How to configure NAS on Windows Server 2019

Preface This tutorial installs the latest version...

MySQL database deletes duplicate data and only retains one method instance

1. Problem introduction Assume a scenario where a...

Let's talk in depth about the principle and implementation of new in JS

Table of contents definition Constructor bodies a...

jQuery plugin to implement stacked menu

A jQuery plugin every day - stacked menu, for you...

Comparing the performance of int, char, and varchar in MySQL

There are many seemingly true "rumors" ...

Detailed explanation of Vue monitoring attribute graphic example

Table of contents What is the listener property? ...

Steps to set up HTTPS website based on Nginx

Table of contents Preface: Encryption algorithm: ...

4 Ways to Quickly Teach Yourself Linux Commands

If you want to become a Linux master, then master...

Implementation of tomcat image created with dockerfile based on alpine

1. Download the alpine image [root@docker43 ~]# d...

How to implement Nginx configuration detection service status

1. Check whether the check status module is insta...

HTML structured implementation method

DIV+css structure Are you learning CSS layout? Sti...