Stopping Autocomplete from browers?
Possible Duplicate:
How do you disable browser Autocomplete on web form field / input tag?
I have implemented my own autocomplete via jQuery but the browser covers up the first option with its own autocomplete info? Is there a way to turn off this field's autocomplete from the server side?
Use
autocomplete="off"
in your INPUT
tag.
<input type="text" autocomplete="off" />
链接地址: http://www.djcxy.com/p/26438.html
上一篇: 有没有办法在您的登录HTML / PHP代码中禁用Cookie
下一篇: 从浏览器停止自动填充?