避免jQuery自动完成以搜索输入焦点

时间:2014-02-01 22:34:23

标签: jquery jquery-ui

当有输入焦点时,自动完成功能会搜索输入焦点,如何避免。

奇怪的行为。

2 个答案:

答案 0 :(得分:0)

它不像这样工作吗?

<input type="text" name="mytext" autocomplete="off">

答案 1 :(得分:0)

这不是jQuery而是浏览器自动功能。

您可以通过添加

来尝试禁用它
autocomplete="off"

<input> <textarea> <form>等,所以看起来会这样:

<input autocomplete="off"..../>

请注意,它可能无法在每个浏览器下运行。

W3Schools

的完整解释