gpt4 book ai didi

jquery-ui 自动完成选择唯一的答案

转载 作者:行者123 更新时间:2023-12-05 00:34:16 25 4
gpt4 key购买 nike

如果只有一个答案返回,我想让 jquery-ui 自动完成自动选择答案。

最佳答案

我使用“打开”回调设置了自动完成功能:

    $('#people_new_user input[type="text"]').each(
function(index, element) {
var field = element.name;
$(element)
.autocomplete({
source: "/cf/AutoComplete/People?current="+field,
open: openUser
});
});
在 open 回调中,我查看是否只有一个结果,如果是,则选择它:
function openUser(event, ui)
{
// Try to select the first one if it's the only one
var $children = $(this).data('ui-autocomplete').menu.element.children();
if ($children.size() == 1)
{
$children.first().click();
}
}

关于jquery-ui 自动完成选择唯一的答案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10947930/

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