1.忽悠浏览器。
<input type="text" style="display: none;" name="xx">
<input type="password" style="display: none;" name="xx">
2.把input type=”password” 改成 input type=”text” 并在后面加上 onfocus=”this.type=’password'”
3.在文档加载完成后将密码及用户输入框设置为空
4.使用html5的属性 (<input type="password" name="pass" autocomplete="off">)但是这种方案不兼容某些Chrome、Firefox;