清除输入框缓存数据

如果不想让浏览器缓存input的值,有2种方法:

方法一: 
 <input type="text" autocomplete="off" name="test" />

方法二: 
<form action="#" autocomplete="off">
<input type="text"  name="test" />
</form>

posted @ 2017-11-23 16:03  boyanh  阅读(3146)  评论(0编辑  收藏  举报