清除input文本内容

Posted 尘埃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除input文本内容相关的知识,希望对你有一定的参考价值。

1、在不想使用缓存的input中添加

autocomplete="off";eg:   
<input type="text" autocomplete="off" name="test" />  

2、在 input 所在的form标签中添加

autocomplete="off";eg:   
<form action="#" autocomplete="off">  
<input type="text" autocomplete="off" name="test" />  
</form>  

  

以上是关于清除input文本内容的主要内容,如果未能解决你的问题,请参考以下文章