1. 程式人生 > >不記錄input輸入框之前輸入的資訊

不記錄input輸入框之前輸入的資訊

在表單的設計過程中,當我們在瀏覽器表單輸入資訊的時候,input文字框會儲存之前提交的表單資訊,當我們雙擊input文字框時之前輸入的文字就會出現,當然,這僅在某些時候用到,但是這樣會很容易暴露使用者的隱私。要使input表單輸入框不儲存之前輸入過的資訊,有兩種方法可以實現。

方法一:在不想使用快取的input中新增 autocomplete="off"。

方法二: 如果整個表單元素都不使用autocomplete功能的話,在 input 所在的form標籤中新增 autocomplete="off"。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<form action="" autocomplete="off" >
    <input type="radio" name="choose" lay-filter="year" value="year">
    <label>按年彙總</label>
    <input type="radio" name="choose" lay-filter="month" value="month">
    <label>按月彙總</label>
    <input type="radio" name="choose" lay-filter="day" value="day" checked="">
    <label>按天彙總</label>
</form>

</body>
</html>