清除谷歌浏览器账号密码缓存输入框背景变黄

$(function() {

    if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) {

        $(window).load(function(){

          $('input:not(input[type=submit])').each(function(){

          var outHtml = this.outerHTML;

          $(this).append(outHtml);

          });

        });

    }

  });


你可能感兴趣的:(清除谷歌浏览器账号密码缓存输入框背景变黄)