禁止文本框的记忆性输入 html输入框去除记忆功能

html输入框去除记忆功能

自动完成功能,只需把 autocomplete 设为 off 即可,如: 

JS禁止文本框的记忆性输入(已测试:ok)

//禁止文本框的记忆性输入
$(document).ready(function(){
    //根据id获取input框元素,并设置不自动完成以达到消除文本框的记忆性输入
    document.getElementById("nice").setAttribute("AutoComplete", "off");
})

body禁止文本框的记忆输入(暂未测试)

在input文本框里添加属性:autocomplete="off"

<input id="nice" type="text" autocomplete="off" value="">

整个表单禁止自动完成(暂未测试)

<FORM method=post action="lue" autocomplete="off">
</FORM>

自动完成功能,只需把 autocomplete 设为 off 即可,如: 

猜你喜欢

转载自www.cnblogs.com/mjtabu/p/12050366.html