suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - onfocus="this.type='password'", warum nicht einfach type='password' verwenden?

Ich habe einen Code von jemand anderem gesehen. Warum verwendet das Passwort-Eingabefeld onfocus="this.type='password'" anstelle der direkten Eingabeaufforderung für die Platzhaltereinstellung?

怪我咯怪我咯2770 Tage vor983

Antworte allen(2)Ich werde antworten

  • 怪我咯

    怪我咯2017-06-28 09:29:57

    知道答案了,原来是为了防止浏览器记住密码,实际上还有autocomplete='off'属性,一开始设置密码框的type属性为text,获取焦点的时候改为password,不过在最新的火狐54版本上改方法没有用,还是会记住密码,chrome下不会记住密码

    Antwort
    0
  • 女神的闺蜜爱上我

    女神的闺蜜爱上我2017-06-28 09:29:57

    <body>
    <input type="text" onfocus="this.type='password'"/>
    <input type="text" id="psd"/>
    </body>
    <script>

    document.querySelector("#psd").onfocus = function () {
        this.type = 'password';
    }

    </script>
    两者是一样的效果而且<input type="text" onfocus="this.type='password'"/>可以在控制台上打上断点说明两个效果应该是一样的

    Antwort
    0
  • StornierenAntwort