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.
我正在尝试在文本框中的值更改时提交 Ajax 表单,我已经使用 Keyup 成功完成了该操作:
$('#Search').keyup(function () { $(this).parents('form').submit(); return false; });
问题是,texbox 失去焦点,所以用户不能继续打字。我将如何编辑它以使#Search文本框保持焦点,以便用户可以继续输入,但仍然在每个键上调用 Ajax 函数?
#Search
重新关注搜索文本框:
$('#Search').keyup(function () { $(this).parents('form').submit(); $(this).focus(); return false; });
或者(我更喜欢),在不提交表单的情况下进行 ajax 调用:
$('#Search').keyup(function () { differentAjaxFunction(); });