方法一: 在不想使用緩存的input中添加 autocomplete="off" Eg: 一:<input type="text" autocomplete="off" /> 二:<input type="text autocomplete="on" /> 方法二: 如果整個表單元素都不使用autocomplete功能的話,在 input 所在的form標簽中添加 autocomplete="off" Eg: <form action="#" autocomplete="off"> <input type="text" name="test" /> </form>