各位大神,我的密码输入框,只要获取到焦点后就会把以前浏览器的密码输入记录显示出来。
我设置autocomplete="off"也没有办法禁用,怎么解决这个问题啊?
<input class="form-control" autocomplete="off" required ng-model="vm.password.oldPlainPassword" type="password" ng-blur="vm.findPad(vm.password.oldPlainPassword)"/>
天蓬老师2017-04-17 12:06:48
題外話:這是瀏覽器為了方便用戶透過之前的快取來自動填充表單的,在瀏覽器設定裡清除下瀏覽資料或勾幾個選項那些就消失了
題主這個密碼也自動填入就有點不合適了,設定
type="password"
其他可以參考 http://segmentfault.com/q/1010000002508241