1. 程式人生 > 其它 >禁止input框自動填充

禁止input框自動填充

技術標籤:htmlhtml5

1、在form表單或者input中使用autocomplete=”off”

2、不讓頁面讀取快取資料

<meta   http-equiv= "Pragma"   content= "no-cache" /> 
<meta   http-equiv= "Cache-Control"   content= "no-cache" /> 
<meta   http-equiv= "Expires"   content= "0" /> 

3、對於type=“password”時禁止自動填充密碼的方法有兩種:

(1)去掉input的name和id屬性(不推薦)

(2)加上autocomplete="new-password"屬性

大部分瀏覽器可行

autocomplete="new-password"