zoukankan      html  css  js  c++  java
  • 阻止360、谷歌浏览器表单自动填充

    1. 阻止谷歌表单自动填充
     <input type="text" id="idcode" maxlength="18" name="idcode" class="form-control" readonly onfocus="this.removeAttribute('readonly')">
    
    1. 阻止360表单自动填充,id任意取
    <input type="text" id="idcode" maxlength="18" name="idcode" class="form-control" readonly onfocus="this.removeAttribute('readonly')">
    <div style="height: 0;">
        <input id="password1" type="text" style="height: 0;width: 0;margin: 0;border: 0;padding: 0">
    </div>
    
    <input type="password" id="password" name="password" class="form-control">
    <div style="height: 0;">
        <input id="password1" type="password" style="height: 0;width: 0;margin: 0;border: 0;padding: 0">
    </div>
    
    只有把命运掌握在自己手中,从今天起开始努力,即使暂时看不到希望,也要相信自己。因为比你牛几倍的人,依然在努力。
  • 相关阅读:
    建议自学
    大牛之术
    学习榜样
    .net源码
    练习题
    学习-如何克服拖延
    如何解决困难问题
    最近阅读
    如何学习一门新语言
    安全问题关注博客
  • 原文地址:https://www.cnblogs.com/freesky168/p/14358194.html
Copyright © 2011-2022 走看看