如何触发“自动完成”功能jQuery 自动完成插件中的事件?

发布于 2024-11-28 18:50:22 字数 499 浏览 1 评论 0原文

我正在尝试从外部触发 jQuery Autocomplete 事件。问题是我正在使用

/*
 * Autocomplete - jQuery plugin 1.0.2
 *
 * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Revision: $Id: jquery.autocomplete.js 5747 2008-06-25 18:30:55Z joern.zaefferer $
 *
 */

如果我升级,我需要找到一些可以直接插入的东西,因为它是旧的遗留代码。有什么建议吗?

I'm trying to trigger the jQuery Autocomplete event externally. The problem is I'm using

/*
 * Autocomplete - jQuery plugin 1.0.2
 *
 * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Revision: $Id: jquery.autocomplete.js 5747 2008-06-25 18:30:55Z joern.zaefferer $
 *
 */

If I upgrade, I need to find something that's a DIRECT drop in because it's old legacy code. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缱绻入梦 2024-12-05 18:50:22

我建议你看看源代码。有一个名为 onChange 的函数,您想像 onChange(0,true) 一样调用它来触发自动完成。我认为它无法从脚本代码外部访问,因此您可以全局公开该函数,也可以编辑自动完成代码以侦听输入和 onChange(0,true) 上的粘贴事件。

I would suggest you look at the source code. There's a function called: onChange that you want to call like onChange(0,true) to trigger the autocomplete. I don't think it's accessible from outside the script code though, so you can either expose the function globally or you can edit the autocomplete code to listen for a paste event on the input and onChange(0,true).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文