markdown 禁用HTML表单输入自动完成和自动填充

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 禁用HTML表单输入自动完成和自动填充相关的知识,希望对你有一定的参考价值。

# Disable HTML Form Input Autocomplete and Autofill

1. Add `autocomplete="off"` onto `<form>` element;
2. Add hidden `<input>` with `autocomplete="false"` as a first children element of the form.

````html
<form autocomplete="off" method="post" action="">
    <input autocomplete="false" name="hidden" type="text" style="display:none;">
    ...
````

This formation is going to prevent Chrome and Firefox to offer autofill and autocomplete for all input fields inside the form.

![Disable HTML form input autocomplete and autofill](http://s21.postimg.org/s9jaut5cn/1455907239797.jpg)

以上是关于markdown 禁用HTML表单输入自动完成和自动填充的主要内容,如果未能解决你的问题,请参考以下文章

禁用 Firefox 自动填充 html 表单但保持自动完成

HTML 表单禁用自动完成功能

在Django中的文本字段上禁用自动完成?

点击“返回”按钮时禁用浏览器表单输入预填充/自动填充功能

html 禁用html输入自动完成和自动填充

网页禁用表单的自动完成功能禁用密码自动填充autocomplete