Google chrome autofilling all password inputs

后端 未结 9 1056
面向向阳花
面向向阳花 2021-02-02 08:09

My Problem

I must have turned on google to autofill for a login on my site, however it is trying to now autofill that login data whenever I want to edit

9条回答
  •  梦毁少年i
    2021-02-02 09:13

    I handle this problem with some simple js

    
    
    // autocomplete
    $('input.autocomplete-off').click(function () {
        $(this).removeAttr('readonly');
    });
    

提交回复
热议问题