gpt4 book ai didi

javascript - onsubmit后Chrome建议框未清除

转载 作者:行者123 更新时间:2023-12-01 03:36:19 26 4
gpt4 key购买 nike

我提交了<form>在 javascript 中使用“ENTER”键并调用函数。此函数返回 false,以便页面不会重新加载。

不幸的是,如图所示,该框没有被清除。

I have just added the 'tot' player at列表的末尾,但提出了“toto”和其他条目。建议框未清除。我怎样才能清除它?

这是使用的代码

$('form').on('submit', function () {
var newUser = $('input.user').val()
displayPerson(newUser) // add the person
$('input.user').val('')
return false;
});

最佳答案

我建议暂时从输入中删除焦点:

$('form').on('submit', function () {
var newUser = $('input.user').val()
displayPerson(newUser) // add the person
$('input.user').val('').blur(); // <-- blur
setTimeout(function () { // Allow time for blur to happen
$('input.user').focus(); // <-- put focus back (if desired).
}, 0);
return false;
});

关于javascript - onsubmit后Chrome建议框未清除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44257964/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com