开发者

Disable recent text lists in browser [duplicate]

This question already has answers here: Closed 11 years ago. 开发者_如何学编程

Possible Duplicate:

How do you disable browser Autocomplete on web form field / input tag?

I am working on a .NET application using C#. When a user starts deleting text from a textbox the browser shows a small list (almost like a drop down list) of recently entered data. The project owners what this removed. I believe it is done automatically by the browser because I never recorded data or implemented this in my design. Does anyone know the name of this built in feature or even more precisely how to disable it entirely (preferably across all browers). If at all possible I would like to accomplish this on the client side in JQuery. I say this because there are places where I dynamically add textboxes.


Turn off autocomplete.

<input type="text" name="myInput" autocomplete="off" />

Take a look the MDN docs.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜