Disable Textbox suggestions

2019-01-27 14:03发布

Hi all you all have experienced that when you use atextbox again and again by writing something in it and submitting the values the textbox starts to give you suggestion on the onfocus event based on previous written values. Can we disable this attribute of the textbox that it shouldn't suggest previous values?

标签: html textbox
1条回答
祖国的老花朵
2楼-- · 2019-01-27 14:38

autocomplete="off" add this as attribute to your control e.g.

<input type="text" autocomplete="off" />
查看更多
登录 后发表回答