阻止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>
只有把命运掌握在自己手中,从今天起开始努力,即使暂时看不到希望,也要相信自己。因为比你牛几倍的人,依然在努力。
原文地址:https://www.cnblogs.com/freesky168/p/14358194.html