Disable autocomplete via CSS

后端 未结 12 738
渐次进展
渐次进展 2020-12-13 05:18

Is it possible to use CSS to disable autocomplete on a form element (specifically a textfield)?

I use a tag library which does not permit the autocomplete element an

12条回答
  •  情话喂你
    2020-12-13 06:06

    You can use a generated id and name everytime, which is different, so the browser cannot remember this text-field and will fail to suggest some values.

    This is at least the cross browser safe alternative, but I would recommend to go with the answer from RobertsonM (autocomplete="off").

提交回复
热议问题