自动完成和 jquery 选择器在运行时发生变化
请看一下下面的自动完成代码。
$(document).ready(function(){
$("#the_input").autocomplete("/autocomplete.php", {
//some options
extraParams: {
base: $('.selected_button').prev('input').val() //***
},
formatItem: function(data, i, n, value) {
return value;
}
});
});
“base”参数是我的问题(标有注释的部分)。
我的页面上有三个按钮和三个隐藏的输入字段。 最初,当加载页面时,我将“selected_button”添加到其中一个按钮。 我已经确认“base:”之后的 jquery 代码可用于访问此元素。 当用户单击其他按钮之一时,我从所有按钮中删除“selected_button”类,并将其添加到用户单击的按钮中。
我想用它来更改用于自动完成查找的基本文件夹。
问题是,无论我单击哪个按钮,自动完成功能始终使用最初设置的路径。 所以我认为自动完成功能无法识别我在运行时所做的类更改。
Please take a look at the following autocomplete code.
$(document).ready(function(){
$("#the_input").autocomplete("/autocomplete.php", {
//some options
extraParams: {
base: $('.selected_button').prev('input').val() //***
},
formatItem: function(data, i, n, value) {
return value;
}
});
});
The "base" parameter is my problem (the part marked with the comment).
I have three buttons and three hidden input fields on the page.
Initially, when the page is loaded, I add the "selected_button" to one of the buttons.
I have confirmed that the jquery code after "base:" can be used to access this element.
When the user clicks on one of the other buttons, I remove the "selected_button" class from all the buttons and add it to the button that the user clicked.
I want to use this to change the base folder that is being used for the autocompletion lookup.
The problem is that the autocomplete always uses the path that was initially set, no matter what button I click.
So I think the autocomplete does not recognize the class changes that I make during runtime.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过将基本参数包装在函数内:
文档似乎建议这是一种可能性。
Have you tried wrapping the base parameter inside a function:
The docs seem to suggest this as a possibility.
删除 selected_button 时需要更改选项:
取自 jqueryui 文档:
option
获取或设置任何自动完成选项。如果没有指定值,将充当 getter。
You need to change the option when you remove selected_button:
taken from jqueryui documentation:
option
Get or set any autocomplete option. If no value is specified, will act as a getter.