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 禁用通常的提交。
创建模糊事件
打开:
$('input#search').focus();
关闭:
$('input#search').blur();