📜  javascript 设置自动完成关闭 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:05.811000             🧑  作者: Mango

代码示例2
# If want to turn off auto complete for some inputs and not all
#listen on the focus event on each input, access
#the target and and turn off autocomplete accordingly
 e.target.offsetParent.autocomplete = "off";