Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jquery 自动完成工具有一个小问题。当我开始输入时,jquery 会向我提出一些自动完成选项,但 iOs 拼写工具也会,如果访问者单击自动完成选项,拼写建议也会添加到输入文本的最终值中。下面是我的意思的一个例子。
有人知道在激活 jquery 自动完成时如何防止 Ios 拼写工具起作用吗?
谢谢
当您初始化 jQuery 自动完成时,您必须将autocomplete="off"属性添加到您不想拥有本机自动完成的输入。
autocomplete="off"
<input type="text" autocomplete="off" />
例如:
var $someInput = $('.some-input'); $someInput.autocomplete(); $someInput.prop('autocomplete', 'off');