gpt4 book ai didi

jquery - 是否有一个 jQuery 自动完成插件可以强制选择一个项目?

转载 作者:行者123 更新时间:2023-12-03 22:49:09 24 4
gpt4 key购买 nike

autocomplete ,但它不会强制选择某个项目。我需要这样的东西,但它必须强制选择一个项目,然后才能“提交”。

存在吗?

最佳答案

您可以使用"change" event 自动完成

        var availableTags = [
"ActionScript",
"AppleScript"
];
$("#tags").autocomplete({
source: availableTags,
change: function (event, ui) {
if(!ui.item){
//http://api.jqueryui.com/autocomplete/#event-change -
// The item selected from the menu, if any. Otherwise the property is null
//so clear the item for force selection
$("#tags").val("");
}

}

});

关于jquery - 是否有一个 jQuery 自动完成插件可以强制选择一个项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1981019/

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