Find the following code
}).bind("blur.autocomplete ", function (c) {
if (!a.options.disabled) {
clearTimeout(a.searching);
a.closing = setTimeout(function () {
a.close( c);
a._change(c)
}, 150)
}
})
is changed to
}).bind("blur.autocomplete", function (c) {
if (!a .options.disabled) {
clearTimeout(a.searching);
a.closing = setTimeout(function () {
a.close(c);
a._change(c)
}, 150)
}
}).bind('input',function (c) {
a.search(a.item);
})
In this way, you can search immediately after typing in Chinese.
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn