这种问题可能会被问好几次,但我的问题是不同的。
我有一个文本字段,它的声明是这样的
<input type="text" autocomplete="off" name="email" id="email" value="Email" onfocus="if (this.value=='Email') this.value='';" onblur="if (this.value=='') this.value='Email';" onkeyup="javascript:chk_email(this.value);" onblur="javascript:chk_email(this.value);" />
当我输入一个单词时,所有类似缓存电子邮件的下拉列表都会出现在文本框下方。
我尝试添加标签仍然它来了autocomplete="off"
。input
我也写了这个javascript,但没有运气。
<script type="text/javascript">
document.getElementById("email").reset();
</script>
有什么方法可以从我的表单中删除缓存电子邮件的下拉列表。我只想删除这个文本框的缓存而不是整个表单。