Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
terrylinooo committed Sep 2, 2018
1 parent 5578f05 commit 9878ca7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Document Transations: [English](./README.md) | [繁體中文](./README_zh_TW.md)

![Image](https://i.imgur.com/j5Mw1ly.png)

在试了几乎所有可能在 Stackoverflow 能找到的方法,相关的讨论串都看遍了,提到的几乎已经过时,没有作用。但后来发现了只要是表单中存在 `type="password"` 栏位,Google Chrome 就会强迫丢出提交的历史记录,因为这个 plugin 进行了以下步骤来避免:
在试了几乎所有可能在 Stackoverflow 能找到的方法,相关的讨论串都看遍了,提到的几乎已经过时,没有作用。但后来发现了只要是表单中存在 `type="password"` 栏位,Google Chrome 就会强迫丢出提交的历史记录,因此这个 plugin 采取以下步骤以避免这种情况发生:

-`type="password"` 取代为 `type="text"` 然后把输入的文字取代为万用字元 `*`,也就是原本保护密码不可看的机制。
- 在表单加入 `autocomplete="off"` 属性,针对较旧版本有效。
Expand All @@ -31,7 +31,6 @@ bower install jquery.disableAutoFill
<script src="https://terrylinooo.github.io/jquery.disableAutoFill/assets/js/jquery.disableAutoFill.min.js"></script>
```


### 线上范例

https://terrylinooo.github.io/jquery.disableAutoFill/
Expand All @@ -58,7 +57,7 @@ passwordFiled | - | DOM 元素用 ID 或使用 ClassName 指定, 如果没有设
submitButton | - | DOM 元素用 ID 或使用 ClassName 指定, 如果没有设定, disableAutoFill 会自动找寻 [**type=submit**] 按纽。
debugMode | false | 设为 true 的话会在 console.log 印讯息。
randomizeInputName | true | 会自动把 <i><strong>input name attribute</strong></i> 以随机的字串取代。然后在提交表单时复原至原始的栏位名称,这么做是避免 Google Chrome 和其它第三方拓展及其它浏览器会记住曾输入的讯息。
设这个选项为“true”来启用HTML原生的表单验证功能 (`required``pattern`及其它相关属性...)
设这个选项为“true”来启用 HTML 5 原生的表单验证功能 (`required``pattern`及其它相关属性...)
callback | - | 送出表单时的回呼,可以用来执行验证栏位等等。

### 例子
Expand Down
4 changes: 2 additions & 2 deletions README_zh_TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Document Transations: [English](./README.md) | [繁體中文](./README_zh_TW.md)

![Image](https://i.imgur.com/j5Mw1ly.png)

在試了幾乎所有可能在 Stackoverflow 能找到的方法,相關的討論串都看遍了,提到的幾乎已經過時,沒有作用。但後來發現了只要是表單中存在 `type="password"` 欄位,Google Chrome 就會強迫丟出提交的歷史記錄,因為這個 plugin 進行了以下步驟來避免:
在試了幾乎所有可能在 Stackoverflow 能找到的方法,相關的討論串都看遍了,提到的幾乎已經過時,沒有作用。但後來發現了只要是表單中存在 `type="password"` 欄位,Google Chrome 就會強迫丟出提交的歷史記錄,所以這個 plugin 進行了以下步驟來避免這種情況發生:

-`type="password"` 取代為 `type="text"` 然後把輸入的文字取代為萬用字元 `*`,也就是原本保護密碼不可看的機制。
- 在表單加入 `autocomplete="off"` 屬性,針對較舊版本有效。
Expand Down Expand Up @@ -58,7 +58,7 @@ passwordFiled | - | DOM 元素用 ID 或使用 ClassName 指定, 如果沒有設
submitButton | - | DOM 元素用 ID 或使用 ClassName 指定, 如果沒有設定, disableAutoFill 會自動找尋 [**type=submit**] 按紐。
debugMode | false | 設為 true 的話會在 console.log 印訊息。
randomizeInputName | true | 會自動把 <i><strong>input name attribute</strong></i> 以隨機的字串取代。然後在提交表單時復原至原始的欄位名稱,這麼做是避免 Google Chrome 和其它第三方拓展及其它瀏覽器會記住曾輸入的訊息。
html5FormValidate | false | 設這個選項為 "true" 來啟用 HTML 原生的表單驗證功能 ( `required`,`pattern` 及其它相關屬性...)
html5FormValidate | false | 設這個選項為 "true" 來啟用 HTML 5 原生的表單驗證功能 ( `required`,`pattern` 及其它相關屬性...)
callback | - | 送出表單時的回呼,可以用來執行驗證欄位等等。

### 例子
Expand Down

0 comments on commit 9878ca7

Please sign in to comment.