DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> html禁止清除input文本輸入緩存的兩種方法
html禁止清除input文本輸入緩存的兩種方法
編輯:HTML和Xhtml     

  多數浏覽器默認會緩存input的值,只有使用ctl+F5強制刷新的才可以清除緩存記錄。

  如果不想讓浏覽器緩存input的值,有2種方法:

  方法一:

  在不想使用緩存的input中添加

XML/HTML Code復制內容到剪貼板
  1. autocomplete="off";eg:   
  2. <input type="text" autocomplete="off" name="test" />  

  方法二:

  在 input 所在的form標簽中添加

XML/HTML Code復制內容到剪貼板
  1. autocomplete="off";eg:   
  2. <form action="#" autocomplete="off">  
  3. <input type="text" autocomplete="off" name="test" />  
  4. </form>  
  5.   
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved