如何触发“自动完成”功能jQuery 自动完成插件中的事件?
我正在尝试从外部触发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议你看看源代码。有一个名为 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).