完全避免Chrome自动填充

时间:2015-10-03 21:56:02

标签: jquery google-chrome autocomplete

我无法禁用Chromes autocomplete功能,因为它非常有用,但也让开发人员感到不安。

这是我最后一个非常简单的解决方案,我还没有在互联网上找到它。

1 个答案:

答案 0 :(得分:-1)

function DisableAutocomplete(){
    $('[autocomplete="off"]').prop('disabled', true);
    setTimeout(function(){
        $('[autocomplete="off"]').prop('disabled', false)
    }, 600);
}

$(document).ready(function() {
    DisableAutocomplete();
}.ajaxComplete(function() {
    DisableAutocomplete();
});

只需将autocomplete属性添加到HTML元素即可。

<input type="password" autocomplete="off" />