gpt4 book ai didi

jquery - 如何在 jQuery UI 自动完成中实现 "mustMatch"和 "selectFirst"?

转载 作者:行者123 更新时间:2023-12-03 21:29:09 25 4
gpt4 key购买 nike

我最近从 bassistance 生成的插件中迁移了一些自动完成插件。到jQuery UI autocomplete .

如何在不修改核心自动完成代码本身的情况下仅使用回调和其他选项来实现“mustMatch”和“selectFirst”?

最佳答案

我想我解决了这两个功能...

为了让事情变得更容易,我使用了一个通用的自定义选择器:

$.expr[':'].textEquals = function (a, i, m) {
return $(a).text().match("^" + m[3] + "$");
};

其余代码:

$(function () {
$("#tags").autocomplete({
source: '/get_my_data/',
change: function (event, ui) {
//if the value of the textbox does not match a suggestion, clear its value
if ($(".ui-autocomplete li:textEquals('" + $(this).val() + "')").size() == 0) {
$(this).val('');
}
}
}).live('keydown', function (e) {
var keyCode = e.keyCode || e.which;
//if TAB or RETURN is pressed and the text in the textbox does not match a suggestion, set the value of the textbox to the text of the first suggestion
if((keyCode == 9 || keyCode == 13) && ($(".ui-autocomplete li:textEquals('" + $(this).val() + "')").size() == 0)) {
$(this).val($(".ui-autocomplete li:visible:first").text());
}
});
});

如果您的任何自动完成建议包含正则表达式使用的任何“特殊”字符,您必须在自定义选择器中的 m[3] 内转义这些字符:

function escape_regexp(text) {
return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
}

并更改自定义选择器:

$.expr[':'].textEquals = function (a, i, m) {
return $(a).text().match("^" + escape_regexp(m[3]) + "$");
};

关于jquery - 如何在 jQuery UI 自动完成中实现 "mustMatch"和 "selectFirst"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2587378/

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